|
||||||||||
| Cable TV Chat Discuss all aspects of the cable tv world |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Member
Join Date: May 2008
Posts: 75
Thanks: 28
Thanked 0 Times in 0 Posts
|
Hi Guys,
A collegue at work has a few N3 cards given to him for Virg*n Media which he states are 'live' cards. I have been using a modded box until they went off. Can the N3 card he has be used on my old box? Would I have to have the card and box paired? Or is he just all talk and this is not possible? Any help or feedback will be much appreciated. Thanks |
|
|
|
|
|
#2 (permalink) | |
|
Senior Member
Join Date: Nov 2009
Posts: 350
Thanks: 71
Thanked 88 Times in 76 Posts
|
Quote:
|
|
|
|
|
| The Following User Says Thank You to stevieboy10 For This Useful Post: | Mysteriousguy (17-11-10) |
|
|
#3 (permalink) |
|
Member
Join Date: May 2008
Posts: 75
Thanks: 28
Thanked 0 Times in 0 Posts
|
Thanks for that response.
I will get a mate to pair up the two as I don't have a clue how to do this. If it works, will advise. I was rather surprised how my mate got these, he is damn sure they are N3 ones. Cheers |
|
|
|
|
|
#4 (permalink) |
|
Underground Crew Member
Join Date: May 2009
Location: Undrground
Posts: 2,149
Thanks: 15
Thanked 1,691 Times in 933 Posts
|
Its easy enough to read the tiers from the card and examine the dates to check if a card is active or not. You can also get the ird No that its paired to if you want and, if the card has a DT08 tier, then you can get the encrypted form of the pairing key which you can then decrypt if you know how !
|
|
|
|
| The Following 2 Users Say Thank You to TheCoder For This Useful Post: | ratcatcher (19-11-10), stevieboy10 (18-11-10) |
|
|
#5 (permalink) | |
|
Howtostopcomputerviruses
Join Date: Jun 2008
Location: England
Posts: 308
Thanks: 85
Thanked 95 Times in 66 Posts
|
Quote:
If not what can you read them with??
__________________
I'M NOT RESPONSIBLE FOR WHAT YOU USE IT FOR! REMEMBER CABLE HACKING IS ILLEGAL! ![]() |
|
|
|
|
|
|
#6 (permalink) |
|
Underground Crew Member
Join Date: May 2009
Location: Undrground
Posts: 2,149
Thanks: 15
Thanked 1,691 Times in 933 Posts
|
Yes, but you need to use a script with NagraEdit. DO NOT try to actually use the NagraEdit read commands.
Last edited by TheCoder; 17-11-10 at 09:30 PM. |
|
|
|
|
|
#7 (permalink) | |
|
Howtostopcomputerviruses
Join Date: Jun 2008
Location: England
Posts: 308
Thanks: 85
Thanked 95 Times in 66 Posts
|
Quote:
or is it in the downloads?
__________________
I'M NOT RESPONSIBLE FOR WHAT YOU USE IT FOR! REMEMBER CABLE HACKING IS ILLEGAL! ![]() |
|
|
|
|
|
|
#8 (permalink) | |
|
Junior Member
Join Date: Aug 2010
Posts: 13
Thanks: 11
Thanked 0 Times in 0 Posts
|
Quote:
Would you know anyone that would work out 5 cam_N for me?
|
|
|
|
|
|
|
#10 (permalink) |
|
Underground Crew Member
Join Date: May 2009
Location: Undrground
Posts: 2,149
Thanks: 15
Thanked 1,691 Times in 933 Posts
|
NagraEdit scripting is pretty simple. The script engine only understands about 9 commands.
rs - reset card tx - transmit a byte sequence to the card rx - receive a byte sequence from the card dl - delay for a perion (in mS) cp - pattern compare jf - jump if pattern compare false js - jump if pattern compare same jp - jump always mg - display a message in the output panel so, lets see if we can come up with a quick script to read channel tiers. Firstly lets see if we can define what it is we wish to do 1/ Reset the card 2/ Set the card IFS - basically tell card the size of its output buffer 3/ Get various card status elements 4/ Get the card CamId 5/ Get paired IRD No from card 6/ Get the first channel tier from the card 7/ If there are more channel tiers then repeatedly get the next one So, lets code it Code:
mg * mg ***Step 1 - Reset the card*** rs dl 0200 mg * mg ***Step 2 - Setting_IFS*** tx 21 C1 01 80 ** dl 0140 rx mg * mg ***Step 3 - Get some card status data*** mg *****CMD_$C0***** tx 21 00 08 A0 CA 00 00 02 C0 00 06 ** dl 0140 rx mg *****CMD_$C7***** tx 21 40 08 A0 CA 00 00 02 C7 00 04 ** dl 0140 rx mg *****CMD_$C8_DATE_TIME***** tx 21 00 08 A0 CA 00 00 02 C8 00 06 ** dl 0140 rx mg * mg ***Step 4 - Get the card CamId*** tx 21 40 08 A0 CA 00 00 02 12 00 06 ** dl 0140 rx mg**-----------------^^-^^-^^-^^---------cam_id_#__** mg * mg ***Step 5 - Get the paired IRD No*** tx 21 40 09 A0 CA 00 00 03 22 01 00 39 ** dl 0140 rx mg **--^^-^^-^^-^^-^^------------------------------IRD_#'S__** cp .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. 00 js virgin mg * mg ***Step 6 - Get the first channel tier from the card*** tx 21 40 09 A0 CA 00 00 03 22 01 05 57 ** dl 0140 rx cp .. .. .. .. .. 00 js end05none :next05 mg * mg ***Step 7 - Get any subsequent channel tier from the card in loop*** tx 21 00 09 A0 CA 00 00 03 22 01 85 57 ** dl 0140 rx cp .. .. .. .. .. 00 js end05 tx 21 40 09 A0 CA 00 00 03 22 01 85 57 ** dl 0140 rx cp .. .. .. .. .. 00 js end05 jp next05 :end05none mg * mg ---no_tiers_on_cam--- :end05 jp exit :virgin mg * mg ---this_is_a_virgin_card.--- :exit mg * mg Script finished Remember DONT use any of the normal Nagraedit commands. At this time NagraEdit is ONLY used as a simple script engine. This script is only a small example - I'll leave it up to you to test & polish ! Last edited by TheCoder; 18-11-10 at 08:45 PM. |
|
|
|
| The Following 2 Users Say Thank You to TheCoder For This Useful Post: | kid_warrior (19-11-10), Sloopy (18-11-10) |
![]() |
| Bookmarks |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem with R4 card | gizmo001i | Nintendo | 6 | 21-10-11 08:53 AM |
| Virgin Box - a scond box with no card? | alirobo | Cable TV Chat | 15 | 17-07-11 10:44 AM |
| V+ BOX - v+ options stopped working as of yesterday | pac-man | Other Cable Boxes | 7 | 16-11-10 09:04 PM |
| New to card shearing ((My thorts only)) | redarrowredarrow | Cable TV Chat | 3 | 30-08-10 09:16 PM |
| V+HD Box come to an end but can I use the box for... | The_Zizzler | Other Cable Boxes | 1 | 22-08-10 02:31 PM |
| LinkBack |
LinkBack URL |
About LinkBacks |
| Bookmark & Share |
Digg this Thread! |
Add Thread to del.icio.us |
Bookmark in Technorati |
Tweet this thread |
