Thursday, June 23, 2011

oscam script for linux

#!/bin/sh
if ps x | grep -v grep | grep oscam ;
then
echo 'date' "Oscam working" >> /tmp/Check_Oscam.log
else
echo 'date' "Restarting Oscam...." >> /tmp/Check_Oscam.log
/usr/local/bin/oscam -b
fi



OSCam in AZbug HD with original FW 5303: both server and client at once!

OK, this works - tested with my Conax CD card CAS5!!! - both as a card reader/server, as well as a client, so no need for any other Emus, thanx to various people for sharing info, like I am trying to do now... Augenzwinkern

After plenty of testing, many different configurations on a couple of OSs [original FW and E2] and a couple of original FWs [4890 and 5303], as well as a couple of E2 [RC4 and RC7]...

The version of OSCam I am using, fairly successfully, with all the stops, bumps, reboots and so on, is 4859, with dvbapii!!! You can find it on OSCam forum, in AZbox HD section, the "sticky" thread with bin files... But I will attach it in this thread, if I can! smile

FTP to AZbug HD [use the freeware FileZilla Client] and go to PLUGINS folder, then OpenXCAS and create a folder oscamCAS, then give it CHMOD to 755 [right click on the file -> File permissions -> 755 -> OK].

On your PC you can create various files, using a freeware application Notepad++, which you will FTP to oscamCAS folder. All except oscam module itself, which you get from the net, as mentioned and then give CHMOD to 755, as above. If it is named differently -> right click on it -> rename it to oscam and hit Enter on your keyboard.

So, here are the four main configuration files [do not deviate from them, for starters... later, try different ones...] - thanx primarily to B@mbi but also hperez, gianni, subnixonfire, Siri, belami etc. etc.:

openxcas.conf


code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
[module]
name = oscamCAS
daemon = oscam -d 255
argument = c /PLUGINS/OpenXCAS/oscamCAS/
version = 1.00
api=Yes
wait =5sec
INFO = /tmp/ecm.info
REFRESH = 2
Note: the "-d 255" line is worth its weight in gold, so to speak... Now AZbug HD reads the card consistently and fairly efficiently! Thanx to Siri!

oscam.conf

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
# oscam.conf generated automatically by Streamboard OSCAM 1.00-unstable_svn build #4859
# Read more: http://streamboard.gmc.to/oscam/browser/trunk/Distribution/doc/txt/oscam.conf.txt

[global]
logfile = /tmp/oscam.log
clientmaxidle = 9000
cachedelay = 120
unlockparental = 1
nice = 4
maxlogsize = 100
preferlocalcards = 1
saveinithistory = 1
lb_mode = 100

[monitor]
port = 988
nocrypt = 127.0.0.1,192.168.1.1-192.168.1.253
aulow = 120
hideclient_to = 0
monlevel = 4
appendchaninfo = 1

[newcamd]
port = [b]xxxxxx[/b]@[b]xxxx:xxxxxx[/b]
key = 0102030405060708091011121314
allowed =
keepalive = 1
mgclient = 0

[cccam]
port = [b]xxxxxx[/b]
reshare = 2
ignorereshare = 0
forward_origin_card = 0
version = 2.2.1
updateinterval = 240
minimizecards = 0
keepconnected = 1
stealth = 1
reshare_mode = 0

[dvbapi]
enabled = 1
au = 1
boxtype = none
user = azbox
pmt_mode = 0
request_mode = 0

[webif]
httpport = 80
httphelplang = en
httpuser = [b]xxxxxx[/b]
httppwd = [b]xxxxxx[/b]
httprefresh = 7
httpallowed = 127.0.0.1,192.168.0.1-192.168.255.255
httphideidleclients = 0
httpreadonly = 0
httpsavefullcfg = 0
Note: xxxxxx = this you choose, whatever it is... ergo xxxxxx = whatever you desire or whatever the CAID of your smartcard... Augenzwinkern

You will need to forward the ports here defined, in your modem/router. "Forwarding ports" means to open those ports up to your AZbug HD, so when your peers try to get to you the traffic will not be blocked and it will automatically be directed to AZbox HD, instead of any other device you have hooked onto your home network, via the same modem/router.

oscam.server

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
[reader]
label = azbox-internal
enable = 1
protocol = internal
device = 0
services = [b]whichever_card_you_have[/b]
caid = [b]xxxx[/b]
ident = [b]xxxx:xxxxxx[/b]
detect = cd
mhz = 357
cardmhz = 357
group = 1
emmcache = 1,1,2
lb_weight = 500


[reader]
label = [b]xxxxxx[/b].dyndns.biz
enable = 1
protocol = cccam
device = [b]xxxxxx[/b].dyndns.biz,17000
user = [b]xxxxxx[/b]
password = [b]xxxxxx[/b]
lb_weight = 100
#inactivitytimeout = 1
reconnecttimeout = 30
#audisabled = 1
group = 2
cccversion = 2.2.1
cccmaxhops = 1
ccckeepalive = 1
#emmcache = 1,2,2
#fallback = 1


(...plus as many servers of your colleagues as you have, like the second example above...)
A note, to explain the name of the file: the first [reader] is your [internal or embedded card] reader, the "server" primarily for yourself, to which the OSCam client part hooks onto, internally, to open the channels.

All the following ones are external [readers]. They are also servers but they are the servers of your peers, to which you hook onto, as a client. I.e. their readers read their cards, not just for themselves, but for you, too.

Hence all are simply "readers", whether local [yours] or remote [virtual, via internet].

The details marked xxxxxx in those you get from your colleagues/peers, like username, password, port and dyndns domain name. Those are necessary to be able to hook onto their servers.

As a client in CCcam protocol one does not need to open various ports, Only servers [your colleagues/"peers" giving you access to their cards] need to do that.

For now, let's just say that your embedded cardreader/internal reader/server should be in Group 1, whereas your CCcam peers should be in Group 2. If you have many C lines you can sub-divide them further, to make it all better optimised/efficient. We shall come to that later.

oscam.user

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
[account]
user = azbox
group = 1,2
au = azbox-internal
monlevel = 4
uniq = 0
services = all
betatunnel = 1833.FFFF:1702
keepalive = 1

[account]
user = [b]xxxxxx[/b]
pwd = [b]xxxxxx[/b]
monlevel = 2
uniq = 1
group = 1
au = 1

(...and so on, as many as you have...)
Note: the file is called oscam.user because in it you are setting various "users" or "clients" to your "server". Each "user" in your file has an "account" with the server. I.e. a user will use your server/services, whether internally [the first one is you and you will hook onto your own card reader/server] or externally.

Externally speaking: partially, you allow your peers access to your server right here, by setting up their username and password. The other parts to allow them access to your server, with which you create C (for your CCcam clients) or N (for your Newcamd clients) lines for your peers/colleagues, are from oscam.conf file, which we will discuss a little bit later, in the P.P.S.

You can divide the [readers] and [accounts] into groups.

For instance, your own internal server [the first "reader"] is in group 1.

All the other "readers", are in group 2.

The very first "account", i.e. "user" has to be in both groups 1 and 2, to hook both onto your own server/reader, as well as your colleague's readers/servers. So, this first user [which is yourself] must hook onto both your internal reader/server [group 1], as well as external readers [group 2].

The other users/accounts are, in my case, Newcamd protocol clients of mine [me being a server, in this case, passing my smartcard to them], i.e. they are getting access solely to my smartcard [internal] reader/server by being placed in Group 1. That way they will not draw from anything but my smartcard/reader.

Apparently, Newcamd server is meant for this purpose, so this is how it is supposed to be used. The N-lines you [partially] create from this file [oscam.user] and [partially] from Newcamd part of oscam.conf file, are to be given to your colleagues, people you trust. With those lines you pass only your card and nothing else and this is how it is done. These [users] are connected to my internal reader/server via Group 1 and thereby not connected to the CCcam protocol, which busy traffic is placed in Group 2.

This is enough for you to be both a [Newcamd protocol] server, as well as [mainly CCcam] client. You give your card[s] in return for other people's cards. No need to pay for "CS services", run by our little CS entrepreneurs, spoiling the fun for us!!! Augenzwinkern

I will attach the rest of the files here, including the module itself, so you don't have to search for it too much... Augenzwinkern

Cheers!Beer

OSCam in AZbox HD's E2

usr/bin/cam -> oscam module goes here, then give it -> CHMOD to 755

Does one actually rename it, like to: oscam.mips or oscam.mipsel or just oscam without extension, then reboot AZbug HD?

/var/tuxbox/config [which actually goes to /etc/tuxbox/config - it seems to me - and this is where one creates a symbolic link only] -> config files go here, of which the essential ones are these:

oscam.conf



# oscam.conf generated automatically by Streamboard OSCAM 0.99.4svn build #2940
# Read more: http://streamboard.gmc.to/oscam/browser/.../oscam.conf.txt

[global]
serverip = 127.0.0.1,192.168.x.x
usrfile = /tmp/oscamuser.log
logfile = /tmp/oscam.log
disablelog = 0
disableuserfile = 0
usrfileflag = 0
clienttimeout = 5
fallbacktimeout = 2500
clientmaxidle = 120
failbantime = 60
failbancount = 0
cachedelay = 1
bindwait = 120
netprio = 1
unlockparental = 1
nice = -10
serialreadertimeout = 1500
maxlogsize = 100
waitforcards = 1
preferlocalcards = 1
saveinithistory = 1
readerrestartseconds = 3
readerautoloadbalance = 0
readerautoloadbalance_save = 0
lb_mode = 1

[monitor]
port = 988
nocrypt = 127.0.0.1
aulow = 30
hideclient_to = 0
monlevel = 4
appendchaninfo = 0

[newcamd]
port = xxx@0B00:000000
key = xxxxxxxxxxxxxxxxxxxxxxxxxxxx
allowed = 127.0.0.1,192.168.0.0-192.168.255.255
keepalive = 1
mgclient = 0

[cccam]
port = xxxx
reshare = 2
ignorereshare = 0
forward_origin_card = 0
version = 2.2.1
minimizecards = 0
keepconnected = 1
stealth = 1
reshare_mode = 0

[dvbapi]
enabled = 1
au = 1
boxtype = dreambox
user = localuser
pmt_mode = 0

[webif]
httpport = 80
httphelplang = en
httpuser = xxxx
httppwd = xxxx
httprefresh = 5
httpallowed = 127.0.0.1,192.168.0.1-192.168.255.255
httphideidleclients = 0
httpreadonly = 0

#[anticasc]
#enabled = 1
#numusers = 0
#sampletime = 2
#samples = 10
#penalty = 0
#aclogfile = ./oscam_ac.log
#denysamples = 8
#fakedelay = 1000


oscam.server


# Automatically generated by ccc_to_oscam v. 1.0

# internal reader

[reader]
label = azboxinternal
enable = 1
protocol = internal
device = /dev/sc0
services = canal digital
caid = 0B00
ident = 0B00:000000
detect = cd
group = 1
emmcache = 1,3,2
fallback = 0


[reader]
label = xxxxxx.dyndns.biz
protocol = cccam
device = xxxxxx.dyndns.biz,17000
account = xxxxxx,xxxxxx
group = 1
lb_weight = 100
audisabled = 1
enable = 1
fallback = 1


[...as above, a few times...]


oscam.user


# Automatically generated by ccc_to_oscam v. 1.0

#[account]
user = localuser
group = 1
au = azboxinternalreader
#pwd = azbox
monlevel = 1
uniq = 0
services = all
betatunnel = 1833.FFFF:1702
keepalive = 1

[account]
user = account1
pwd = pwd1
disabled = 0
monlevel = 2
uniq = 0
group = 1
au = 0
#services = Cdigital
ident = 0B00:000000

[...and so on, as above, a few more times, only username and pass change...]

Oscam to OScam share

So on the client it would be something like this:-

#[reader]
#label = Remotereadercam35
#enable = 1
#protocol = camd35
#device = dyndns.no-ip.info,556677
#account = username,password
#inactivitytimeout = 1
#reconnecttimeout = 30
#fix9993 = 0
#group = 3

than in conf of server

[camd35]
port = 556677
updateinterval = 240
minimizecards = 0
#######################################
On the server

oscam.confg

[cs357x]
port = 25550

[account]
user = user1
pwd = pass1
group = 1
au = 1

client machine


[reader]
label = label of reader
protocol = camd35
device = ipservert,25550
user = user1
password = pass1
services = ,,,,,,
caid = ?????
group = 1
emmcache = 1,3,2

This is an exemple of a configuration that works

script oscam auto restart when down working or not?

This script verify if oscam is running and if not they start oscam:
################################################
#!/bin/sh
if ps x |grep -v grep |grep -c oscam >/dev/null
then
echo "oscam... ok"
else
echo "oscam... restarting"
/var/script/CCcam_2.1.4_oscam_0.99.4_cam.sh start
################################################

1. put this lines into a file for ex: /var/script/Autooscam.sh
2. from blue pannel: Services/Daemons > activate crond
3. add a line in /var/spool/cron/crontabs/root for run AutoCCcam.sh at 32 minutes after the hour, or adjust the interval for your needs

# Run hourly cron jobs at 32 minutes after the hour:
32 * * * * /usr/script/Autooscam.sh

or "crontab -e root" to add the cron job: 32 * * * * /var/script/Autooscam.sh

MCAfrica-Ku-Band- Setting CAID 606 Irdeto 2 v5

[reader]
label = mck
enable = 1
protocol = internal
device = /dev/sci0
services =
caid = 0606
rsakey = 000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000
force_irdeto = 1
boxkey = 0000000000000000
detect = cd
mhz = 600
cardmhz = 600
ident = 0606:000000
group = 1
emmcache = 1,3,10
lb_weight = 100
deprecated = 1


i hope help this config

Oscam For Evolution Image

Oscam For Evolution Image

Oscam tbz2 file manuall install /tmp (after unzipping).
Attached Files

CCcam / oscam Check - Restart

CCcam / oscam Check - Restart




new update for test
Attached Files

CCcam/Oscam Automated Installation

CCcam/Oscam Automated Installation

This is an automated installation script for Linux PC based cardsevers. The original scripts written by Youknowwho (R.I.P), this is his CCcam and Oscam script put together. A few modifications had to be done to the script incorporate Oscam and its dependencies, so other than the normal programs its installs (compared to the original script), it will install a few other ones that are need for oscam and various devices to fully function.

Oscam has been compiled, x86 (not 64bit), version #5376, it has webIF and smartreader support, smargo's and serial readers are pretty much ready to go. PCSC devices (Omnikey, etc) haven't been tested so I don't know if it works, feel free to test and report if they do.

Before installation open the CCcamOscamInstall.sh script and fill in the owner name with your user login name for linux i.e. login username = server, put server next to owner. Copy files to /tmp folder, chmod 755 the script file and as root in terminal(sudo -i, for ubuntu) run the script, it will put the neccessary files where they belong. A CCcam.cfg file is included with this, however all it has is a N line for Oscam to connect to CCcam, either copy your existing cfg file into this or copy the n line to your cfg file, one or the other, otherwise it will not work. Oscam.conf, Oscam.server and Oscam.user files are included too, however these need to be edited to incorporate your setup, i.e. smargo or serial reader, caid, there is plenty of info and guides on the forums to get it properly configured.

I have tried to get this to work on Ubuntu 8.0.4.4, sadly I couldn't get it to work (common glibc2.8 not installed error), an experienced linux user probably can get it working, I couldn't. Tested and working very well in Ubuntu 10.4. I take no credit for this, just someone trying to give back to the community, anything related to the script please put in forum and i shall get back to you. Please don't contact me about card setups, etc.

A
Attached Files
File Type: zip CCcam Oscam.zip (771.9 KB, 70 views)

OScam Cards List and Configurations, all cards that can read !!!

OScam Cards List and Configurations, all cards that can read !!!

OScam Cards List and Configurations, all cards that can read !!!
How setup card with Oscam
== TV Cabo N3 (internal cardreader) ==
= Polsat N3 (internal cardreader) ===
== KabelKiosk Conax (internal cardreader) ==
== Viasat 93E NDS (internal cardreader) ==
== Viasat 90F NDS (internal cardreader) ==
== TotalTV (internal cardreader) ==
== RTV Slovenia (internal cardreader) ==
== HRT Viaccess (internal cardreader) ==
== ORF ICE (internal cardreader) ==
== Sly DE 1702 (internal cardreader) ==
== Sly DE 1702 (internal cardreader) ==
== Sly DE NDS (internal cardreader) ==
== Sly UK white – advanced config (internal cardreader) ==
== Sly UK white card (internal cardreader) ==
== SRG Suisse Viaccess 4.0 (internal cardreader) ==
== Sly IT 93b (internal cardreader) ==
== Sly IT 919 (internal cardreader) ==
== Tivusat (internal cardreader) ==
Attached Files
File Type: rar OScam Cards List and Configurations.rar (22.5 KB, 617 views)

Guide: Howto setup Oscam as a CCcam proxy

Oscam is perhaps one of the best sharing emulators when it comes to connection to other protocols. So here's a small howto on how to setup Oscam as a CCcam proxy while you connect through newcamd to Oscam.

Why? Some receivers still seem to lack CCcam client possabilities and several emu's are running more stable when using a newcamd type line (for instance:acamd, vdr-sc and sasc-ng seem to work somewhat more stable using newcamd connections). For this to work you need a working CCcam configuration, Oscam binary and the files oscam.conf, oscam.server and oscam.user.

In my case I used a NSLU2 and put the Oscam binary in /var/bin and the oscam.* files in /var/etc. Now for the contents of the files:

oscam.conf

Code:
[global]
nice       = -1
WaitForCards  = 1

pidfile       = /var/run/oscam.pid
logfile       = /var/log/oscam/oscam.log
usrfile       = /var/log/oscam/oscamuser.log
cwlogdir      = /var/log/oscam/cw

[monitor]
port       = 988
aulow       = 120
monlevel      = 1

[newcamd]
key           = 000102030405060708090A0B0C0D
port          = 10000@0100:00006A,004106;10001@1722:000000
At the key you can setup your DES-key, which the client requires to connect using the information from oscam.user. But the most important part, is the port information.

You need to add an additional newcamd port for every CAID you want to proxy. For example, CAID 0100 (SECA) has 2 idents in the name Canal+ NL (00006A) and Digital+ (004106) and it's set to port 10000. Port 10001 has the CAID 1722 (NAGRA) set to the ident of KD. It's important to remember you need to specify seperate idents per CAID. Don't use FFFFFF, since that won't give you everything on the specified CAID.

oscam.server
Code:
[reader]
reconnecttimeout = 5
label      = remote
protocol   = cccam
device     = 127.0.0.1,12000
account    = oscam_user,oscam_password
group      = 1
caid       = 
cccversion = 2.1.4
cccbuild   = 3191
This is straight forward. Just a simple connection to your CCcam configuration. In this case it connects to localhost (127.0.0.1) running on the default port (12000) with the specified username and password which I created in CCcam.cfg (F: oscam_user oscam_password 5 0 1 { 0:0:1 } { } { } 127.0.0.1). In this case it connects as a CCcam 2.1.4 client.

oscam.user
Code:
[account]
user       = username
pwd        = password
uniq       = 0
group      = 1
caid       = 
au         = remote
With the oscam.user you can specify the username and password combination you want to use with the newcamd line. With the above examples you should use the following information (in this case oscam is running on the example IP of 192.168.1.200):

cardclient.conf (vdr-sc, sasc-ng, acamd):
Code:
newcamd:192.168.1.200:10000:1/0100/ffff:username:password:000102030405060708090A0B0C0D
newcamd.list (mgcamd):
Code:
CWS_KEEPALIVE = 300
CWS_INCOMING_PORT = 12000
CWS = 192.168.1.200 10000 username password 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D lan newcs
Well, you get the drift. This way you can even connect your obscure receiver, which only does newcamd, to CCcam using Oscam. Offcourse, please check first with your peer if he's ok with this. But for internal connection it should be fine and stable.

Oscam/CCcam HD+ V13

Oscam/CCcam HD+ V13

Oscam V13

Vu+ Duo & Solo with CCcam & Oscam V13 all ok

for card SKY DE v13
Angehängte Dateien

oscam-svn5441-light-Distribution.tar.gz

oscam-svn5441-light-Distribution.tar.gz

oscam-svn5441-light-Distribution
Angehängte Dateien

Howto HD+ mit Oscam

Wer HD+ mit oscam und CCcam betreiben möchte, für den ist die folgende Anleitung sicherlich hilfreich.

Downoload _Oscam mit Konfig

1.Schritt 1:
Ganz normal übers BluePanel "oscam" (Neue Version) und "CCcam 2.1.3" installieren.

Schritt 2:
Ihr entpackt die oscam_config.zip und kopiert die Configs nach /var/tuxbox/config. Sollten dort schon welche sein, löscht ihr alle dort befindlichen Dateien und kopiert die aus dem Anhang entpackten Config Files darüber..

Schritt 3 - die wohl größte Hürde:
Boxkey & RSA

In das oscam.server File muss der Boxkey und der RSA eingetragen werden.Kann man auf der Upload site finden.

Dann seid ihr mit oscam fertig...


Schritt 4:

In die /etc/CCcam.cfg tragt ihr folgende N Line ein:

N: 127.0.0.1 34000 user pass 01 02 03 04 05 06 07 08 09 10 11 12 13 14




Danach startet ihr oscam/CCcam neu. Dann sollte HD+ laufen




Wie das hier erklärt ist auf dem Download,funktioniert die Karte einwandfrei.Ihr könnt dananch selber die Konfigaration ändern so wie ihr sie haben wollt.

Oscam Config:

Code:
#
# main configuration
#

[global]

[global]
nice       = -1
WaitForCards  = 1
ClientTimeout = 5
LogFile = stdout
Level = 15
CacheDelay = 120

# monitor

#[monitor]
#port = 988
#aulow = 120
#monlevel = 1

# protocols
#[camd35]
#Port = 3333

[newcamd]
key = 0102030405060708091011121314
port          =  34000@1830:003411
Oscam Server
Code:
[reader]
label = HDplus
Protocol = internal
detect = CD
device = /dev/sci0
group = 1
emmcache = 1,3,2
n3_rsakey  = xxx
n3_boxkey   = xxx
mhz = 368
Oscam User
Code:
[account]
user = user
pwd = pass
group = 1
au = HDplus
CAID = 1830
Configs fuer HD+ im smargo

Oscam server:

Code:
#oscam.server

[reader]
label    = HD+
protocol = internal
detect   = CD
device   = /dev/usb/tts/0
group    = 1
emmcache = 1,3,2
n3_rsakey  = xxx
n3_boxkey  = xxx
#mhz = 368












Oscam card List Viki page:
HTML Code:
= Cards List =

== Why this Wiki page ? ==

It would be great to have a list of all smartcards tested with the '''lastest OSCam SVN''', including comments specifying the working configurations, what to be aware of.

== Quick View ==

{{{
#!rst

============== ============= ============= ============== ================ ============== =============== ================== ============== ============== ============== 
**Cards**      **Country**   **CAID:PROV** **Linux/i686** **Linux/x86_64** **PPC/Tuxbox** **MIPS/Tuxbox** **PC/Cygwin/i386** **OSX**        **Mhz**        **Overclocking Reader**
============== ============= ============= ============== ================ ============== =============== ================== ============== ============== ============== 
**Seca**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CANAL DIGITAAL NL            0100:006A      OK              OK             OK              OK               OK                OK             
Télésat        BE /LU        0100:006D                                                                                        OK
TV Vlaanderen  BE            0100:006C                                                                                        OK
BETV           BE            0100:009B      OK                                                              OK 
CSAT FR        FR            0100:3311      OK              OK             OK              OK               OK
NUMERICABLE    FR            0100:A821      OK              OK
**Viaccess**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Bis TV          FR           0500:020810    OK              OK             OK              OK               OK
TBD             FR           0500:020910    OK                                                                                              3.57
Televisa        MX           0500:022200                                                   OK
NTV             RU           0500:023100    OK
NTV             RU           0500:023700    OK
SSR/SRG         CH           0500:023800    OK              OK             OK              OK               OK
FreeX.TV        FR           0500:024400                                   OK              OK
RTVi            RU           0500:024B00    OK              OK
TNTSAT          FR           0500:030B00    OK              OK             OK               ?               ?                OK             3.57
TNtop           FR           0500:032200    OK              OK              ?               ?               ?                OK
CSAT/C+         FR           0500:032820    OK              OK             OK              OK               OK
Orange          FR           0500:032900    OK
**Irdeto**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
SHOWTIME                     0604:002800    OK              OK
ORBIT           AE           0668:000100    OK              OK
NOVA            GR           0604:14583C                    OK
Al Jazeera      QA           0603                                                          OK
**Videoguard2**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sky Italia     IT            0919:0000      OK              OK             OK                                                               3.57
Sky Italia     IT            093B:0000      OK                             OK                                                               3.57  
BSkyB          GB            0961:0000      OK              OK             NO              NO               NO
BSkyB          GB            0963:0000      OK              OK
Sky GER V13    DE            09C4:0000      OK              OK                             OK                                               6.86           Smargo 
FOXTEL         AU            096C:0000      OK
Viasat                       090F:0000      OK
Viasat                       093E:0000      OK                     
**Conax**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MTV Unlimited  DE            0B00:00E030    OK              OK                             OK                                               3.58
WilhelmTel     DE            0B00:00E030    OK
**Cryptoworks**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ORF            AT            0D05                                          OK              OK
arena          DE            0D22           OK              OK                                                                              3.58
**Nagra**
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sky GER N3 Sat DE            1702           OK              OK                                                                              8.00           µMouse
Sky GER N3 Sat DE            1833:000401    OK              OK                OK            OK                OK
Sky GER N3 C   DE            1722           OK              OK                
HD+            DE            1830:003411    OK                                OK            OK                OK
ZON PT N3 SAT  PT            1802:004801    OK
                             1802:004901 
                             1802:000000                                      OK            OK                OK                             3.68
KDH(D09)GER N3 DE            1834:000401    OK              OK                OK            OK                OK
UPC         N3 HU            1815:00B801    OK              OK                OK            OK                OK
============== ============= ============= ============== ================ ============== =============== ==================
Oscam Start von Telnet:

cd /var/bin

ls

./filename.ext &

ps -A

Webinfo Oscam:
oscam.conf:


[monitor]
port = 988
aulow = 120
monlevel = 2
NoCrypt = 192.168.2.140-192.168.2.150
oscam.user:
[account]
user = user
pwd = pass
monlevel = 2

Wednesday, June 22, 2011

S*Y UK ready Nabilosat Oscam+CCcam2.1.3 DM500 clone Backup

S*Y UK ready Nabilosat Oscam+CCcam2.1.3 DM500 clone Backup

Based on NabiloDM500-V08-MAXVAR.
Green button and then Yellow x2 button takes you to:-
Dedicated server for Nabilosat addons
Download and install additional packages from the Nabilosat server


Whats New ?

This image is S*y UK ready with all Oscam configs and N line in CCcam.cfg.
CCcam 2.1.3
Oscam
Latest CCcam Channel info
Latest CCcam Providers
SGTFlipFlop ENiGMA2 28.03.11 (Multi)





Use Flashwizard to flash this Backup.

S*Y UK ready Nabilosat Oscam+CCcam2.1.3 DM500 Backup

Pli@jade Cccam+oscam Backup

Pli@jade Cccam+oscam Backup.rar 7 MB Download

DM-500s Gemini-4.70 (Cccam-2.2.1 & OSCam-1.00) Backup

DM-500s Gemini-4.70 (Cccam-2.2.1 & OSCam-1.00)Özel Backup 20.03.2011 KaYaCaN*
.
Code:
Backup bir gün önce hazırlandı , test edildi ve Foruma verildi.

.Backupta  Setting the current 4 satellite is installed. (42E +13 E +07 E +19.2 E)
.
CCcam-2.2.1 For users of oscam Backupa & 1:00 oscam-established.
Click here to enlarge

Click here to enlarge


Gemini-470 Backup cccam-221+Oscam 20.03.2011 KaYaCaN.rar

SIF Team Dreambox 500 Backup Oscam+CCcam

DM-500 Backup Oscam+CCcam


Imagine: SifTeam

Script Imagine: Original

Setting: Mono

EmuScript: Oscam+CCcam (Original RuBeN Created)

Work & Tested NDS2

Imagine: No Bomb!

Beckup: 25.11.2009




Download NOW

Oscam tools for Ubuntu V 1.11

Oscam tools for Ubuntu V 1.11
Code:
Lastest changes:

 - first to install all web application check if apache2 and php5 is installed
Attached Files
File Type: gz oscam-tools-ubuntu-v1.1.1.tar.gz (9.4 KB, 227 views)

OSCAM finished package with S02 & HD + Configs for Gemini

I just got the last two days dealt intensively with OSCAM because I was disturbed for some time that
1st scam with Smargo not really want
2nd Nagra CCcam can not read maps
3rd I have no desire to run in parallel Cams
4th find no independent OSCAM up to now in the DB, is just download Overnight, BP
5th the configs for the Smargo vote often
6th Cepheus, kodo & ALNO know very much thank you for all the info

OSCAM is yes, thanks dvbapi independently and well with little performance loss. So all collected together in the forum, for me suitably adapted and tested for function. Now we have some just simply the thing in the Annex.

Actually everything is self-maintained folder structure and pay attention to rights.
In the oscam.server are four examples of Skyders in the slot, in Skyders Smargo, HD + in the slot, HD + in Smargo. What is needed leave, changing the return address everything else. Have only ne DB800, DB8000 should be used to change the copy and the second slot, and then the appropriate device = / dev/sci0 in / dev/sci1.
Login for webif with http://boxip:16002: admin pass: OSCAM

P.S. I know the configs are mhz and cardmhz and here is often written that one does not need as identified in the atr, and is set automatically. That was with me but not so Skyders then ran only to 3.57 MHz and 5.00 MHz on the HD +.
Attached Files
File Type: rar e2-mipsel-oscam_0.99.4_svn2643_gemini.rar (273.8 KB, 132 views)

How to install CCcam and Oscam Sky UK

How to install CCcam and Oscam Sky UK

Here are working configs for sky uk using Oscam + CCcam 2.1.3.
Oscam files can be found in folder /etc/tuxbox/config
Edit the file Oscam.server file, add your boxkey and remove the #

Oscam.conf

Code:
[global]
nice = -1
WaitForCards = 1
logfile = stdout
preferlocalcards = 1
saveinithistory = 1

[webif]
httpport = 8888
httpuser = admin
httppwd = admin
httpallowed = 192.168.1.100

# protocols

[newcamd]
key = 0102030405060708091011121314
port = 10000@0963:000000;10001@0963:000000
—–
Oscam.server

Code:
[reader]
label = slot1
protocol = internal
device = /dev/sci0
#boxid = yourboxid
blockemm-u = 0
blockemm-s = 0
blockemm-g = 1
blockemm-unknown = 1
emmcache = 1,3,2
group = 1
caid = 0963
——
Oscam.user

Code:
[account]
user = test1
pwd = test2
monlevel = 0
uniq = 0
group = 1,2
au = 1
caid = 0963
Attached Files
File Type: rar Oscam sky uk.rar (1.5 KB, 167 views)

New OSCam.provid

Mediaset Premium channels Updated

Gracias al amigo BeeGhepol
Attached Files
File Type: zip OSCam.srvid_by_BeeGhepol_02-03-2011.zip (82.9 KB, 326 views)

how to make oscam auto start

Log as root into your debian or Ubuntu  and add next command nano /etc/rc.local and add after CCcam line /var/bin/oscam.x86 &
PS. If your oscam name is different as mine example, or oscam path edit those with yours.

Good testing

oscam-tripledragon

r5367 | schlocke | 2011-06-09 15:06:08 +0200 (Thu, 09 Jun 2011) | 3 lines

loadbalancer: small fix for "notfound" with ecm-time>timeout, now
converted to "timeout"

------------------------------------------------------------------------
r5366 | _network | 2011-06-07 21:11:36 +0200 (Tue, 07 Jun 2011) | 2 lines

viaccess: next try for a workaround for emm from cccam (#1838)

------------------------------------------------------------------------
Attached Files
File Type: rar oscam-svn5367-tripledragon.rar (294.9 KB, 2 views)

OSCam Easy Build Script (script only!)

v.0.8.3
- create megapack: some small gz fix on fritzbox
- fix menuentry/code against ppc-dreambox
- ../EasyBuildScript/EasyBuild.info added (detailed overwiev of supportet receivers/routers etc...)
Attached Files
File Type: gz oscam-easy-build.v0.8.3.tar.gz (380.5 KB, 4 views)
oscam-svn5458-light-Distribution


Code:
r5458 | lareq78 | 2011-06-22 00:29:47 +0200 (Wed, 22 Jun 2011) | 1 line

in continue of 5453 ,try fixing renew cards with timeout
------------------------------------------------------------------------
r5457 | alno | 2011-06-21 23:09:47 +0200 (Tue, 21 Jun 2011) | 1 line

Config: add description parameter to readers. Feel free adding 63 Characters as comment to each reader token
Attached Files
File Type: gz oscam-svn5458-light-Distribution.tar.gz (3.16 MB, 11 views)

Latest Version of OScam (both, UMP & SB)

r5457 | alno | 2011-06-21 11:09:47 PM (Tue, 21 Jun 2011) | 2 lines

Config: add description parameter to readers. Feel free adding 63 Characters as comment to each reader token
--------------------------------------------------------------------------
r5456 | alno | 2011-06-21 10:44:10 PM (Tue, 21 Jun 2011) | 1 line

WebIf: fix typo from last commit
Attached Files
File Type: rar oscam-svn5457-light-Distribution.tar.rar (3.15 MB, 2 views)

Oscam for SifTeam Extreme DM E2 Images

Oscam for SifTeam Extreme DM E2 Images

Package: oscam-tvsat-internal
Version: 2090-r0
Section: emucam
Architecture: mipsel
Maintainer: oscam
MD5Sum: 895bdac2220792e125eee51588642575
Size: 360220
Filename: oscam-tvsat-internal_2090-r0_mipsel.ipk
Source: none
Description: Oscam tvsat internal reader
Attached Files
File Type: rar oscam-tvsat-internal_2090-r0_mipsel.rar (307.1 KB, 87 views)

Oscam Monitor for Windows Mobile

Oscam Monitor for Windows Mobile

necesary Mobile Framework 2.0

gracias a Alno
Attached Files
File Type: zip OscomMobile.zip (16.4 KB, 70 views)

Oscam.cfg´s for Sky Germanys V13 card

Oscam.cfg´s for Sky Germanys V13 card

at the moment there is a problem with livesports and sky germanys V13 card!

here are the oscam.cfg´s which will solve this problem!

N-Line in ccccam.cfg is

N: 127.0.0.1 44002 user pass 01 02 03 04 05 06 07 08 09 10 11 12 13 14

set 256 behind line for cccam versions till 2.1.3 to get card as local!

from CCcam 2.14 that dont works!
Attached Files
File Type: rar oscam v13.rar (606.5 KB, 164 views)

Oscam autoinstall-script for ubuntu and other linux

Oscam autoscript for ubuntu and other linux
Attached Files
File Type: zip oscam installer.zip (637.6 KB, 524 views)

OneStep - OScam Monitor

0.1.6
- Add handler for CCcam.channelinfo
From now you can disable 'appendchaninfo' in the monitor section of oscam.conf.
Thanks to madmax for the help and beta testing
Attached Files
File Type: zip OScamMonitor.zip (1.24 MB, 293 views)

Oscam + CCcam AutoInst. for image Nabilo E1 and E2

Oscam + CCcam Autoinstall in Imagen Nabilo e1 / e2

E1_093b_Oscam1715+C

E1_0919_Oscam1715+C


E2_0919_Oscam1715+C

E2_093b_Oscam1715+C
Attached Files
File Type: tgz E1_093b_Oscam1715+C.tgz (636.3 KB, 376 views)
File Type: tgz E1_0919_Oscam1715+C.tgz (636.3 KB, 226 views)
File Type: tgz E2_0919_Oscam1715+C.tgz (688.0 KB, 74 views)
File Type: tgz E2_093b_Oscam1715+C.tgz (688.0 KB, 75 views)

Oscam + CCcam Autoinstallanti per immagini Nabilosat Enigma 1 ed Enigma 2

Oscam + CCcam Autoinstallanti per immagini Nabilosat Enigma 1 ed Enigma 2

Quote:
In questo thread sono disponibili i pacchetti autoinstallanti di Oscam + CCcam per immagini Nabilosat Enigma 1 ed Enigma 2. Sia per card 0919 che per card 093b.
La versione di Oscam usata per Enigma 1 e' la 536, mentre per Enigma 2 e' la 538.
La versione di CCcam usata sia per Enigma 1 che per Enigma 2 e' la 2.1.3
Nei modelli di Dreambox con 2 card readers, i files di configurazione sono stati preparati per l'uso di /dev/sci0. Questo significa che la card va inserita nel card reader inferiore. I possessori di readers esterni, quali lo smargo, dovranno modificare la configurazione di proprio pugno.
Nei modelli di Dreambox con 1 solo card reader, non vi sono raccomandazioni.

Oscam e' in continuo aggiornamento e miglioramento.
Quando una nuova versione di Oscam viene pubblicata, e' sufficiente sostituire il file eseguibile.
Per immagini Enigma 1, il file eseguibile si trova in /var/bin
Per immagini Enigma 2, il file eseguibile si trova in /usr/bin

Per sostituire il file eseguibile, procedere come indicato:

1) avviare una sessione Telnet
2) digitare cd /
3) terminare il processo oscam in corso, digitando killall -9 oscam seguito dal tasto invio
4) sul proprio PC, rinominare l'eseguibile in oscam E' importante che venga usato questo nome, per rispettare lo script di avvio.
5) avviare una sessione FTP
6) copiare il file eseguibile nel percorso

/var/bin per immagini Enigma 1
/usr/bin per immagini Enigma 2

7) assegnare gli attributi per file eseguibile al file oscam, 755
8) riavviare la EMU dal pannello della propria immagine Nabilosat.


Come gia' detto, Oscam e' in continuo aggiornamento. Per questa ragione, questi pacchetti non verranno aggiornati ogni volta che una nuova versione viene pubblicata.Per la stessa ragione, non saranno resi disponibili per il download dal pannello degli addons.

Prima di installarli, e' suggerito fare un backup dei propri files presenti, e poi rimuoverli. Questo consente di evitare conflitti.


Per sapere come configurarli ed usarli, esistono gia' numerosi di thread di supporto. Vi invito a cercarli e leggerli.
Questo thread resta chiuso.


Si ringrazia G++ per i files di configurazione e gli eseguibili
Attached Files
File Type: tgz e1_093b_Oscam_CCcam_nab.tgz (573.7 KB, 846 views)
File Type: tgz e1_0919_Oscam_CCcam_nab.tgz (573.8 KB, 656 views)
File Type: tgz e2_093b_Oscam_CCcam_nab.tgz (648.4 KB, 403 views)
File Type: tgz e2_0919_Oscam_CCcam_nab.tgz (648.5 KB, 490 views)

Oscam for LS Enigma2 Images

Oscam for LS Enigma2 Images

LS e2 CCcam-2.1.3 Oscam0944-rv745
.
Attached Files
File Type: zip LS_e2_CCcam-2.1.3_Oscam0944-rv745.zip (666.9 KB, 103 views)
New files
Attached Files
File Type: zip LS-oscam-SB-2052-full.zip (575.1 KB, 14 views)
File Type: zip LS-oscam-UMP-2013-bin.zip (556.1 KB, 3 views)
File Type: zip LS-oscam-UMP-2013-full.zip (559.5 KB, 6 views)

Oscam for Eagle Image

Oscam 4862 for Eagle Image

-Moved explanation of ECM caching.
-cccam: now all assigned caids from (hardware) readers are generated ascards
Attached Files
File Type: gz Oscam_1.00_4862_bin.tar.gz (315.7 KB, 11 views)
File Type: gz Oscam_1.00_4862_cfg.tar.gz (6.5 KB, 12 views)