...
Post

What is OScam

…is software used for the purpose of watching TV on linux satellite receiver.

Example: You have Sky Germany card and you want to use it outside of your original receiver. First you need receiver based on Linux (i would suggest enigma 2 receiver), then you need to set up OScam on this receiver.

This can be easy or hard job, it depends what are your technical skills. There are many tutorials on internet, how to use OScam. I would suggest that you check both my pages first. Enjoy!

You can find more info here (wiki page): http://streamboard.de.vu/wiki/index.php/OSCam/en/What_is_OSCam

Post

OScam Anticascading

UPDATED with latest info about this useful function!

This is a quick HOW-TO for those who want to protect your local card after the recent rise of card fakers/stealers. OScam users can take C-line that you have given to them and put it directly to OScam thus bypassing any reshare limits you set in CCcam. They can also go one step further and fake your local with the 256 trick in CCcam versions prior to 2.1.4 (2.1.3,2.0.11, etc.)!! What you need to use is Anticascading!

If you have a peer who is doing re-sharing/faking do the following:

Create a file oscam.ac and put in these lines:
1702:000000 = 10 # interval 10 seconds for provider 1702
1833:000401 = 10 # interval 10 seconds for provider 1833
093B:000000 = 10 # interval 10 seconds for provider 093b
0963:000000 = 10 # interval 10 seconds for provider 0963
0500:000000 = 10 # interval 10 seconds for Viaccess cards
*=7 # interval 7 seconds for all others providers

These are examples that you can use… 10 seconds should be OK for all providers. If not, use 7 for example, or 15!

In your oscam.conf add following lines:

[anticasc]
 enabled = 1
 numusers = 1 #1 user is allowed. If oscam detects more then 1 request within 10 Seconds from same user cascading is detected.
 sampletime = 2
 samples = 10
 penalty = 0
 aclogfile = /tmp/oscam_ac.log #important, because you will be able to see, what is OScam doing.
 denysamples = 10 or 9
 fakedelay = 4000 or 2500

In oscam.user, for each guilty user add:
penalty = 1

DO NOT add penalty line for dvbapi user!!!

Post

Compile OScam on ClearOS 5.1

You need to connect to your PC using telnet (putty). Select all three lines at the same time and copy paste them in putty (telnet). OS will start to install packages.

yum install cvs subversion autoconf libccid automake libtool gettext make cmake tar bzip2 gzip patch ncurses-bin gcc g++ flex bison pkg-config wget libpng2 libpng3 zlib gcc-c++ pcsc-perl pcsc-tools pcsc-lite pcsc-lite-devel pcsc-lite-doc pcsc-lite-libs ccid ctapi-cyberjack-pcsc monosim pcsc-lite-openct pkg-config wget libpng3 libpcsclite1 libpcsclite-dev libusb-dev libssl-dev libpng12-0 libpng12-dev libpng3 libpng-sixlegs-java libpnglite-dev pngquant libpngwriter0-dev libpngwriter0c2 zlib-bin zlib1g-dbg zlib1g-dev zlib1g zlibc dialog build-essential mercurial hal

Use this command if you have omnikey readers:

yum remove openct

Install this package only if you have Smargo cardreader:

wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.8/libusb-1.0.8.tar.bz2
tar xjf libusb-1.0.8.tar.bz2
cd libusb-1.0.8
./configure; make; make install

Now we are ready for final steps!

cd .. (you need to come to the root of your sistem)
svn co http://streamboard.de.vu/svn/oscam/trunk oscam-svn   # you can also add -r xxxx at the end, if you want to download specific version of oscam. Lets say 7190. Very useful, especially if newer versions of OScam are very unstable!
cd oscam
mkdir build
cd build
cmake ..
make
make install (this command will install oscam to /usr/local/bin folder!!)

This is it! Your oscam should support pcsc (omnikey) and smargo cardreaders!

For discussion please visit this thread:

https://www.satnigmo.com/forum/index.php?threads/compiling-oscam-in-clearos.550/

Post

Compile OScam on Debian (UPDATED: 05.01.2020)

Compiling Oscam on Debian is copy/paste of Ubuntu tutorial. Process is quite easy, nothing to be afraid about. There might be some changes in packages needed, please be aware of this. It depends on the version of Debian you use.

You need to connect to your PC using telnet/ssh (use small little app called putty). Select all lines at the same time and copy paste them in putty. OS will start to install packages. I cleaned up the list (there should be no errors), some might be not needed at all, but it doesnt hurt really.

apt-get install cvs subversion autoconf libccid automake libtool gettext make cmake tar bzip2 gzip patch ncurses-bin gcc g++ flex bison pkg-config pcsc-tools pkg-config wget libpcsclite1 libpcsclite-dev libusb-dev libssl-dev libpnglite-dev pngquant zlib1g-dbg zlib1g-dev zlib1g zlibc dialog build-essential mercurial minizip

Install this package only if you have Smargo cardreader (there might be newer version on sourceforge site, please check first):

wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.8/libusb-1.0.8.tar.bz2
tar xjf libusb-1.0.8.tar.bz2
cd libusb-1.0.8
./configure; make; make install

Now we are ready for next steps!

cd .. (you need to come to the root of your sistem)
svn checkout http://www.streamboard.tv/svn/oscam/trunk oscam-svn   # you can also add -r xxxx at the end, if you want to download specific version of oscam. Very useful, especially if newer versions of OScam are very unstable!
cd oscam-svn
mkdir build
cd build
cmake ..
make
make install (this command will install oscam to /usr/local/bin folder!! - if you have already oscam binary there, please backup it)

Now you need to chmod oscam file to 0755. Use these commands:

cd /usr/local/bin

chmod 755 oscam

You also need to setup automatic startup with boot. Execute these commands:

nano /etc/rc.local

Before “exit 0” line write this line:

/usr/local/bin/oscam -b

Press CTRL+C and confirm changes with Y.

Now you need to create oscam config files and transfer them to /usr/local/etc. You will also be able to use PSCS (Omnikey for example) and Smargo cardreaders!

For discussion please visit thread here:

https://www.satnigmo.com/forum/index.php?threads/compiling-oscam-in-debian.548/

Post

Compile OScam on Ubuntu (UPDATED: 05.01.2020)

Compiling Oscam on Ubuntu is quite easy, nothing to be afraid about. I use 18.04.1 LTS, but it also works on older and newer versions. There might be some changes in packages needed, please be aware of this.

You need to connect to your PC using telnet/ssh (use small little app called putty). Select all lines at the same time and copy paste them in putty. OS will start to install packages. I cleaned up the list (there should be no errors), some might be not needed at all, but it doesnt hurt really.

apt-get install cvs subversion autoconf libccid automake libtool gettext make cmake tar bzip2 gzip patch ncurses-bin gcc g++ flex bison pkg-config pcsc-tools pkg-config wget libpcsclite1 libpcsclite-dev libusb-dev libssl-dev libpnglite-dev pngquant zlib1g-dbg zlib1g-dev zlib1g zlibc dialog build-essential mercurial minizip

Install this package only if you have Smargo cardreader (there might be newer version on sourceforge site, please check first):

wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.8/libusb-1.0.8.tar.bz2
tar xjf libusb-1.0.8.tar.bz2
cd libusb-1.0.8
./configure; make; make install

Now we are ready for next steps!

cd .. (you need to come to the root of your sistem)
svn checkout http://www.streamboard.tv/svn/oscam/trunk oscam-svn   # you can also add -r xxxx at the end, if you want to download specific version of oscam. Very useful, especially if newer versions of OScam are very unstable!
cd oscam-svn
mkdir build
cd build
cmake ..
make
make install (this command will install oscam to /usr/local/bin folder!! - if you have already oscam binary there, please backup it)

Now you need to chmod oscam file to 0755. Use these commands:

cd /usr/local/bin

chmod 755 oscam

You also need to setup automatic startup with boot. Execute these commands:

nano /etc/rc.local

Before “exit 0” line write this line:

/usr/local/bin/oscam -b

Press CTRL+C and confirm changes with Y.

Now you need to create oscam config files and transfer them to /usr/local/etc. You will also be able to use PSCS (Omnikey for example) and Smargo cardreaders!

For discussion please visit thread here:

https://www.satnigmo.com/forum/index.php?threads/compiling-oscam-in-ubuntu.547/

Powered by moviekillers.com.com

Seraphinite AcceleratorOptimized by Seraphinite Accelerator
Turns on site high speed to be attractive for people and search engines.