http://www.webstatschecker.com/stats/keyword/technisat_skystar2_driver_ubuntu
http://ubuntuforums.org/showthread.php?t=914826
http://www.vdr-portal.de/board60-linux/board14-betriebssystem/board69-c-t-vdr/92129-ctvdr-7-skystar2/
Sunday, February 24, 2013
Tuesday, February 19, 2013
My Lotto
http://www.nesug.org/proceedings/nesug98/inte/p014.pdf
http://www.ldir.com/itfiles/sapb.htm
http://www.tip.sas.upenn.edu/curriculum/units/2011/02/11.02.07.pdf
http://books.google.com.ph/books/about/Learning_SAS_by_Example.html?id=7WkfycHDQX4C&redir_esc=y
http://www.docstoc.com/docs/18189316/A-%E2%80%9CLOTTO%E2%80%9D-SAS-for-you!
http://www.get-digital-help.com/2010/11/03/select-6-unique-and-random-numbers-from-1-to-49-lottery-in-excel/
http://www.ldir.com/itfiles/sapb.htm
http://www.tip.sas.upenn.edu/curriculum/units/2011/02/11.02.07.pdf
http://books.google.com.ph/books/about/Learning_SAS_by_Example.html?id=7WkfycHDQX4C&redir_esc=y
http://www.docstoc.com/docs/18189316/A-%E2%80%9CLOTTO%E2%80%9D-SAS-for-you!
http://www.get-digital-help.com/2010/11/03/select-6-unique-and-random-numbers-from-1-to-49-lottery-in-excel/
This report shows the top numbers, based on the game's recent history.
HIGH WINS
These numbers have the most wins in the game's entire draw history.
HIGH WINS: 42 31 8 12 16 45 10 1 18 15 36 37
LOW WINS
These numbers have the fewest wins in the game's entire draw history.
LOW WINS: 29 4 20 19 26 14 43 27 3 13 6 41
CONSISTENT
These numbers are the most consistent winners in the last 10 and 100 draws.
CONSISTENT: 37 16 34 15 28 41 8 10 21 22 40 1
TRENDING
These numbers have the strongest trending toward wins in the last 10 draws.
TRENDING: 21 37 1 3 14 15 16 17 20 22 26 28
OVERDUE
These numbers are overdue for a win based on the last 10 and last 100 draws.
OVERDUE: 19 27 4 44 43 30 9 23 42 39 2 38
BONUS
These numbers are overdue for a win based on the last 10 and last 100 draws.
BONUS: 19 12 15 14 9 2 18 4 17 8 7 10
########################################################
My First Lottery SAS Program
#####################################################
options linesize=64 pagesize=55;
data sasrng;
SEED1=Time();
array balls ball1-ball6;
do k=1 to 104;
do i=1 to 6;
balls(i) = RANUNI(SEED1)*1000000000000;
balls(i)=ROUND(balls(i));
balls(i)=1+(mod(balls(i),49));
end;
do until (ball2 ne ball1);
ball2 = RANUNI(SEED1)*1000000000000;
ball2 = ROUND(ball2);
ball2 = 1+(mod(ball2,49));
end;
do until (ball3 ne ball2 and ball3 ne ball1);
ball3 = RANUNI(SEED1)*1000000000000;
ball3 = ROUND(ball3);
ball3 = 1+(mod(ball3,49));
end;
do until (ball4 ne ball3 and ball4 ne ball2 and ball4 ne
ball1);
ball4 = RANUNI(SEED1)*1000000000000;
ball4 = ROUND(ball4);
ball4 = 1+(mod(ball4,49));
end;
do until (ball5 ne ball4 and ball5 ne ball3 and ball5 ne
ball2 and ball5 ne ball1);
ball5 = RANUNI(SEED1)*1000000000000;
ball5 = ROUND(ball5);
ball5 = 1+(mod(ball5,49));
end;
do until (ball6 ne ball5 and ball6 ne ball4 and ball6 ne
ball3 and ball6 ne ball2 and ball6 ne ball1);
ball6 = RANUNI(SEED1)*1000000000000;
ball6 = ROUND(ball6);
ball6 = 1+(mod(ball6,49));
end; output; end;
run;
proc print data=sasrng;
var ball1;
var ball2;
var ball3;
var ball4;
var ball5;
var ball6;
run;
Thursday, February 14, 2013
IRDETO 1
IRDETO 1 ONLY
Getting valid Subcard details is easy or sometimes damn near impossible.
this is the short of it.
you need :
HSN = Hex Serial Number PrId = Provider Id HMK = Hex Master Key PMK = Plain Master Key EMK = Encrypted Master Key CoCo = Country CodesHow to get all this ?
Well the HSN , PrID & HMK these 3 are all bar a mouse click away if you own a Elvis or any phoenix programmer. I use either FMCard4.0 or Ird2Calc to find my HMK. and ofcourse HSN and Provider Id is no big secret its displayed everytime you Connect. O.K once you've connected and have your HSN and PrId you can now extract your HMK.HMK
Then I use FMCard 4.0 method "2" to extract the HMK from the Sub card. After a while it spits out your HMK... or it doesn't ... If it doesn't try this. Ird2Calc is pretty simple to use and auto detects what version smart card you have.And what method to use to get your HMK and the appropriate button highlights. Sometimes one will work and the other doesn't and vice versa anyways after you have found your HMK you will need to find your EMK this will be used later.EMK
An EMK is needed.(or sometimes called a MasterKey)EMKs and PMKs are the same thing bar one is encrypted and one is not. (not hard to figure which is what). Unfortunatly Encrypted Master Keys are not stored on the Smartcards themselves they have to be logged over the air. i assume if you are reading this chances are you aren't logging EMK's, so you will need to ask someone nicely who is. or start Logging the EMK's --but-- Supriseingly there are people out there found on moderated forums that can and do help with an EMK's. Supply them only your HSN and PrId and they will provide you with your Emk.PMK
This is stored on the card but most attempts to access it directly, end up killing your Subscriber smartcard. this i learnt the hard way. a PMK can be generated in no time at all useing FMCalc in FMCard. The catch is we are making our own PMK to do that a current/valid Emk and Hmk needed for the PMK making process. :(Generating a PMK
This is an old bushmans trick, Run Fmcard4.0 by fatmate, Find the FMCalc button, and punch in your HMK and your EMK(MasterKey) click on the arrow circled in red, and presto you have a PMK(PlainMasterKey). Sorry about the little red arrow kinda got carried away with the moment So now you should have HSN PrId HMK PMK EMK - no longer needed as now you have your PMK. Which is all you need except for a pesky little thing called a Country Code, or Coco for short.Country Codes
There are four basic forms F0Xsell(XFN), @ustar(XAU), 0ptos(XOV) and Direct To Home(DTH) The first three are widely known and can be read straight off the card. The DTH changes almost weekly so it is next to useless. mmmm But also can be obtained by a Nokia Logger. Thats it !!! Now all you need is to know what to do with them.No resposibility is taken for any wrong or misleading information contained with in this document as this was conducted for experimental purpose only. Plus i was drunk at the time . DO NOT use this for the purpose of obtaining illegal Pay TV.
Monday, February 11, 2013
NAGRA3
There are three different pairing methods used N3 boxes presently. These are DT06, DT08 and Secondary key.
http://www.computersolutions.cn/blog/2011/03/kudelski-n3-bits-and-pieces/
http://www.digital-kaos.co.uk/forums/f10/people-n3-cards-82421/
##################################
NAGRA ni NAORMIL
##################################
05/09 20:29:54 10193EA8 r ATR: 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 32 16
2013/05/09 20:29:55 10193EA8 r Maximum frequency for this card is formally 5 Mhz, clocking it to 3.68 Mhz
2013/05/09 20:29:56 10193EA8 r detect native nagra card
2013/05/09 20:29:57 10193EA8 r [nagra-reader] type: NAGRA, caid: 1801, IRD ID: 61 60 9E F6
2013/05/09 20:29:57 10193EA8 r [nagra-reader] ProviderID: 00 00 4E 01
2013/05/09 20:29:57 10193EA8 r [nagra-reader] active to: 2010/09/20 11:59
2013/05/09 20:29:57 10193EA8 r ------------------------------ -----------
2013/05/09 20:29:57 10193EA8 r |id |tier |valid from |valid to |
2013/05/09 20:29:57 10193EA8 r +----+--------+------------+-- ----------+
2013/05/09 20:29:57 10193EA8 r |4F01|1345 |2008/09/05 |2009/04/08 |
2013/05/09 20:29:57 10193EA8 r |4F01|12CC |2010/06/19 |2010/09/20 |
2013/05/09 20:29:57 10193EA8 r |4F01|7559 |2010/07/02 |2010/07/02 |
2013/05/09 20:29:57 10193EA8 r |4F01|755A |2000/05/04 |2010/07/16 |
2013/05/09 20:29:57 10193EA8 r ------------------------------ -----------
2013/05/09 20:29:57 10193EA8 r Negotiate sessionkey was not successfull! Please check rsa key and boxkey
2013/05/09 20:29:57 10193EA8 r card system not supported
2013/05/09 20:29:57 10193EA8 r Normal mode failed, reverting to Deprecated Mode
2013/05/09 20:29:57 10193EA8 r Extra delay for PPC box between reset and IO_Serial_Read for the ATR
2013/05/09 20:29:59 10193EA8 r ATR: 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 32 16
2013/05/09 20:30:00 10193EA8 r Maximum frequency for this card is formally 5 Mhz, clocking it to 3.68 Mhz
2013/05/09 20:30:02 10193EA8 r detect native nagra card
2013/05/09 20:30:11 10193EA8 r card system not supported
2013/05/09 20:30:11 10193EA8 r card initializing error
2013/05/09 20:30:11 0 s init for all local cards done
http://www.computersolutions.cn/blog/2011/03/kudelski-n3-bits-and-pieces/
http://www.digital-kaos.co.uk/forums/f10/people-n3-cards-82421/
##################################
NAGRA ni NAORMIL
##################################
05/09 20:29:54 10193EA8 r ATR: 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 32 16
2013/05/09 20:29:55 10193EA8 r Maximum frequency for this card is formally 5 Mhz, clocking it to 3.68 Mhz
2013/05/09 20:29:56 10193EA8 r detect native nagra card
2013/05/09 20:29:57 10193EA8 r [nagra-reader] type: NAGRA, caid: 1801, IRD ID: 61 60 9E F6
2013/05/09 20:29:57 10193EA8 r [nagra-reader] ProviderID: 00 00 4E 01
2013/05/09 20:29:57 10193EA8 r [nagra-reader] active to: 2010/09/20 11:59
2013/05/09 20:29:57 10193EA8 r ------------------------------
2013/05/09 20:29:57 10193EA8 r |id |tier |valid from |valid to |
2013/05/09 20:29:57 10193EA8 r +----+--------+------------+--
2013/05/09 20:29:57 10193EA8 r |4F01|1345 |2008/09/05 |2009/04/08 |
2013/05/09 20:29:57 10193EA8 r |4F01|12CC |2010/06/19 |2010/09/20 |
2013/05/09 20:29:57 10193EA8 r |4F01|7559 |2010/07/02 |2010/07/02 |
2013/05/09 20:29:57 10193EA8 r |4F01|755A |2000/05/04 |2010/07/16 |
2013/05/09 20:29:57 10193EA8 r ------------------------------
2013/05/09 20:29:57 10193EA8 r Negotiate sessionkey was not successfull! Please check rsa key and boxkey
2013/05/09 20:29:57 10193EA8 r card system not supported
2013/05/09 20:29:57 10193EA8 r Normal mode failed, reverting to Deprecated Mode
2013/05/09 20:29:57 10193EA8 r Extra delay for PPC box between reset and IO_Serial_Read for the ATR
2013/05/09 20:29:59 10193EA8 r ATR: 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 32 16
2013/05/09 20:30:00 10193EA8 r Maximum frequency for this card is formally 5 Mhz, clocking it to 3.68 Mhz
2013/05/09 20:30:02 10193EA8 r detect native nagra card
2013/05/09 20:30:11 10193EA8 r card system not supported
2013/05/09 20:30:11 10193EA8 r card initializing error
2013/05/09 20:30:11 0 s init for all local cards done
Thursday, February 7, 2013
Wednesday, February 6, 2013
Irdeto Commands to get all information from your GammaCard
http://www.soft4sat.com/vb/t657.html
http://www.aljazeerasport.net/ajscustom/FAQ.pdf
http://irdeto.com/documents/HL_CAS_SecChip_EN_L.pdf
Got IT IRDETO
New Irdeto Cards (V6) : Premium cards and the serial Number start with 42xxxxxxxx
Initial Irdeto Cards (V5.X): Epsilon , Zeta and Kappa cards and the serial Number start with 41xxxxxxxx
Irdeto Conditional access system with Irdeto secure
Chipset license
Irdeto-approved advanced security device with Irdeto
softcell client
Irdeto smart card or Cloaked Ca
http://www.aljazeerasport.net/ajscustom/FAQ.pdf
http://irdeto.com/documents/HL_CAS_SecChip_EN_L.pdf
Got IT IRDETO
New Irdeto Cards (V6) : Premium cards and the serial Number start with 42xxxxxxxx
Initial Irdeto Cards (V5.X): Epsilon , Zeta and Kappa cards and the serial Number start with 41xxxxxxxx
Irdeto Commands to get all information from your GammaCard
Irdeto Conditional access system with Irdeto secure
Chipset license
Irdeto-approved advanced security device with Irdeto
softcell client
Irdeto smart card or Cloaked Ca
|
Irdeto Commands to get all information from your GammaCard
kargo.25
03-02-2010, 23:03
Irdeto Commands to get all information from your GammaCard
Irdeto Commands to get all information from your GammaCard. How To Use: Only with emk you can send this comands to your gamma at position string to send to card you take the mesage not succesfull but also you take the information that your card recieved cmd class Ins Ref1 Ref2 Lenth Data ---------------------------------------------------------------------------------------- 01 02 00 00 00 00 Get ASCII Serial Number ---------------------------------------------------------------------------------------- 01 02 01 00 00 00 Get HEX Serial Number ---------------------------------------------------------------------------------------- 01 02 02 00 00 00 Get Country Code ---------------------------------------------------------------------------------------- 01 02 03 00 xx 00 Get Provider xx ID (max 4 providers in 2.x and 4.x cards) ---------------------------------------------------------------------------------------- 01 02 04 00 xx 01 yy Get chid Block yy for Provider xx.Block is 60 bytes Max. number of Blocks depends on card type.for 2.1 and 2.2 is 13 Blocks. ---------------------------------------------------------------------------------------- 01 02 05 00 00 00 Get 00 00 + 49 bytes (FF) ---------------------------------------------------------------------------------------- 01 02 06 00 00 00 Return error code 0050 ( Ref1 error ?? ) ---------------------------------------------------------------------------------------- 01 02 07 00 00 40... Write 64 bytes to register 08 (Return code 0700) ---------------------------------------------------------------------------------------- 01 02 08 00 00 00 Get 64 register 08 ---------------------------------------------------------------------------------------- 01 02 09 03 xx 40 ... Set camkey to card. xx is index byte for which camkey to use. data is 64 bytes (8 keys x 8 bytes) ---------------------------------------------------------------------------------------- 01 02 0A 00 xx 02 ... check PIN code xx= (00)Parental PIN 01 02 0A 01 xx 04 ... change PIN code (01)IPPV PIN (02)Home-Shopping PIN (03)General PIN check (data = 2 bytes pin code) change (data = 2 bytes old pin code + 2 bytes new) If ok return 50 or 51 not ok 52 chenged ok 01 02 0A 02 02 02 00 00 --> ???????????????????? idon't know check this later 01 02 0A 03 02 04 00 00 00 00 --> ???????????????????? idon't know check this later ------------------------------------------------------------------------------------------ 01 02 0B 00 00 00 Country Code + ???? + 2 bytes for maximum ChID for each provider + 30 bytes(00). ------------------------------------------------------------------------------------------- 01 02 0C 00 00 00 11 bytes (00) ------------------------------------------------------------------------------------------- 01 02 0D 00 00 00 14 bytes (00) ------------------------------------------------------------------------------------------- 01 02 0E xx 00 00 xx= 2 Read Card File 2 xx= 3 Read Card File 3 -------------------------------------------------------------------------------------------- 01 02 0F 00 xx 00 Get ASCII Serial + Provider xx + Provider id xx + 8 bytes Encrypted + 8 bytes Signature ??. -------------------------------------------------------------------------------------------- 01 02 10 00 00 00 Get ASCII Serial + 0000 + 64 bytes(FF) + 8 bytes Signature??. -------------------------------------------------------------------------------------------- 01 02 11 00 00 40 ... Send 64 bytes data to be Encrypted by RSA public-key encryption -------------------------------------------------------------------------------------------- 01 02 12 00 00 00 Return error code 5D00 --------------------------------------------------------------------------------------------- 01 02 13 00 00 00 15 bytes(00) -------------------------------------------------------------------------------------------- 01 02 14 00 00 00 02 bytes (00 80) -------------------------------------------------------------------------------------------- 01 02 15 00 xx 00 If xx=00 return Encrypted 128 bytes If xx=01 return another Encrypted 128 bytes --------------------------------------------------------------------------------------------- 01 02 16 xx 00 00 If xx 01 or 02 Return error code 0092 else 0096 If we send xx =00 Return error code 00 96 then send xx =01 return Encrypted 128 bytes ------------------------------------------------------------------------------------------- 01 02 17 xx 00 00 If xx 01 or 02 Return error code 5100 else 0096 ------------------------------------------------------------------------------------------- 01 02 18 xx 00 00 If xx 00 or 01 Return error code 0093 else 0053 ------------------------------------------------------------------------------------------- 01 02 19 xx 00 00 If xx 00 Return error code 0011 else 0007 ------------------------------------------------------------------------------------------- 01 02 1A 00 00 00 Return error code 0007 ------------------------------------------------------------------------------------------- 01 02 1B 40 00 00 64 bytes Encrypted ------------------------------------------------------------------------------------------- 01 02 1C 00 xx 00 07 bytes (00) if provider xx availabe ------------------------------------------------------------------------------------------- 01 02 1D 00 00 00 Return error code 0050 ------------------------------------------------------------------------------------------- 01 02 1E 00 00 00 Return error code 0050 ------------------------------------------------------------------------------------------- 01 02 1F 00 00 00 Return error code 0050 ------------------------------------------------------------------------------------------- 01 02 20 00 00 00 Return error code 0050 for ACS 5.0 new commands ================================ 01 00 03 00 00 00 return 2 bytes 50 53 01 00 03 01 00 00 return 4 bytes 05 05 0A 0A 01 00 03 02 00 00 return 5 bytes 00 95 3F 00 00 01 00 03 03 00 00 return 10 bytes 14 24 39 E1 34 F4 00 00 28 56 01 02 20 00 00 10 02 1A 00 01 01 00 00 00 00 01 00 00 00 00 00 00 (write 16 bytes) 01 02 21 00 00 00 (Get 16 bytes wroted by 01 02 20 00 00) 01 02 1E 00 00 00 01 02 1F 00 00 00 01 02 1C 03 0x 00 (x = 0 to 4 check if the privider availabe) 01 02 23 00 00 00 ----------------------------------------- 01 02 05 00 00 00 removed was there older card 01 02 10 00 00 00 removed 01 02 16 00 00 00 removed
stkritikos
05-02-2010, 11:37
please i need help . i have gamma card with atr 37073086BC1D3DD7
what it this atr?
stkritikos
05-02-2010, 11:51
and with emk i have this atr 3B 68 00 00 A1 44 55 77 01 56 49 53
nokia59
06-02-2010, 19:18
AHello, me j' have of l' helps please thank you
ATR: 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 34 2e 31 9D
papaki63
07-02-2010, 11:59
Any news/help on unlocking locked g@mm@s ?
Can theese commands do the trick somehow?
007.4
07-02-2010, 15:07
Any news/help on unlocking locked g@mm@s ?
Can theese commands do the trick somehow? The above cmds are standard Irdetto cmds. They cannot unlock a Gamma card. The Gamma card is locked using a specific Gamma cmd. 3010........... You need to determine which file killed your card and then what the false Transport Code was. The Gamma unlocker(s) has seven of these Transport Codes hardcoded in it and you can try these one by one by trial and error. If your card has not been locked by one of these known TCs then I'm afraid it cannot be unlocked.
gparis
01-08-2010, 15:49
Hi all any software to change hsn and prov id on gamma + card with atr 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 33 9E
Would appreciate any advice. Cheers
wamerhi1
09-09-2010, 09:08
I have Gamma card i not used please advice what channel open on this card
Brummie
09-09-2010, 09:33
bulsat 39e or canal + nl 19e at the moment i think pink as gone,
traxe
09-09-2010, 20:22
Yes only bulsat 39e or canal + nl 19e ,pink are using N*D*S only now.
xxxAxxx
09-09-2010, 23:39
going on of topic now,,,,here not card chat area topic close
|
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum
vBulletin® v3.8.6, Copyright ©2000-2013, Jelsoft Enterprises Ltd.
Subscribe to:
Posts (Atom)