annuncio

Comprimi
Ancora nessun annuncio.

Oscam Compiled RuBeNi All Patch!!

Comprimi
Questa discussione è chiusa.
X
X
Comprimi
Currently Active Users Viewing This Thread: 0 (0 members and 0 guests)
 
  • Filtro
  • Ora
  • Visualizza
Elimina tutto
nuovi messaggi
  • #16

    Re: Oscam Compiled RuBeNi All Patch!!

    codice:
    changelog:
    - added fuse byte in log and in entitlements page
    - ins54 code optimization 
    - added some info about cw error generation
    - now crypted cws (aka fake cw) are cutted off
    
    please test also if astro sd working like before

    codice:
    Index: globals.h
    ===================================================================
    --- globals.h	(revision 9778)
    +++ globals.h	(working copy)
    @@ -1366,6 +1366,7 @@
     	unsigned char   irdId[4];
     	uint16_t		VgCredit;
     	uint16_t        VgPin;
    +	unsigned char   VgFuse;
     	unsigned char   VgRegionC[8];
     #ifdef WITH_LB
     	int32_t         lb_weight;                      //loadbalance weight factor, if unset, weight=100. The higher the value, the higher the usage-possibility
    Index: module-webif.c
    ===================================================================
    --- module-webif.c	(revision 9778)
    +++ module-webif.c	(working copy)
    @@ -3909,6 +3909,13 @@
     					tpl_addVar(vars, TPLADD, "READERPIN", "n/a");
     				}
     
    +				//Fuse Vg card
    +				if(rdr->VgFuse)
    +				{
    +                    tpl_printf(vars, TPLAPPEND, "READERFUSE", "%02X", rdr->VgFuse);
    +					add_nds_line = 1;
    +				}
    +
     				//credit on Vg card
     				if(rdr->VgCredit)
     				{
    Index: reader-videoguard2.c
    ===================================================================
    --- reader-videoguard2.c	(revision 9778)
    +++ reader-videoguard2.c	(working copy)
    @@ -5,45 +5,6 @@
     #include "reader-common.h"
     #include "reader-videoguard-common.h"
     
    -static void dimeno_PostProcess_Decrypt(struct s_reader *reader, unsigned char *rxbuff, unsigned char *cw)
    -{
    -	struct videoguard_data *csystem_data = reader->csystem_data;
    -	unsigned char tag, len, len2;
    -	bool valid_0x55 = 0;
    -	unsigned char *body;
    -	unsigned char buffer[0x10];
    -	int32_t a = 0x13;
    -	len2 = rxbuff[4];
    -	while(a < len2 + 5 - 9)  //  +5 for 5 ins bytes, -9 (body=8 len=1) to prevent memcpy(buffer+8,body,8) from reading past rxbuff
    -	{
    -		tag = rxbuff[a];
    -		len = rxbuff[a + 1];
    -		body = rxbuff + a + 2;
    -		switch(tag)
    -		{
    -		case 0x55:
    -		{
    -			if(body[0] == 0x84)     //Tag 0x56 has valid data...
    -			{
    -				valid_0x55 = 1;
    -			}
    -		}
    -		break;
    -		case 0x56:
    -		{
    -			memcpy(buffer + 8, body, 8);
    -		}
    -		break;
    -		}
    -		a += len + 2;
    -	}
    -	if(valid_0x55)
    -	{
    -		memcpy(buffer, rxbuff + 5, 8);
    -		AES_decrypt(buffer, buffer, &(csystem_data->astrokey));
    -		memcpy(cw + 0, buffer, 8);  // copy calculated CW in right place
    -	}
    -}
     
     static void do_post_dw_hash(struct s_reader *reader, unsigned char *cw, const unsigned char *ecm_header_data)
     {
    @@ -697,6 +658,8 @@
     	memcpy(reader->hexserial + 2, cta_res + 3, 4);
     	memcpy(reader->sa, cta_res + 3, 3);
     	reader->caid = cta_res[24] * 0x100 + cta_res[25];
    +	reader->VgFuse = cta_res[2];
    +	rdr_log(reader, "FuseByte: %02X", reader->VgFuse);	
     	memset(reader->VgRegionC, 0, 8);
     	memcpy(reader->VgRegionC, cta_res + 60, 8);
     	rdr_log(reader, "Region Code: %c%c%c%c%c%c%c%c", reader->VgRegionC[0], reader->VgRegionC[1], reader->VgRegionC[2], reader->VgRegionC[3], reader->VgRegionC[4], reader->VgRegionC[5], reader->VgRegionC[6], reader->VgRegionC[7]);
    @@ -954,44 +917,87 @@
     		}
     		else
     		{
    -			if(!cw_is_valid(rbuff + 5))  //sky cards report 90 00 = ok but send cw = 00 when channel not subscribed
    +			
    +		struct videoguard_data *csystem_data = reader->csystem_data;
    +		unsigned char *payload = rbuff + 5;
    +		unsigned char buff_0F[6]={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };	
    +		unsigned char buff_56[8]={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
    +		unsigned char buff_55[1]={ 0x00 };	
    +		unsigned char tag, t_len;
    +		unsigned char  *t_body;
    +		int32_t payloadLen = rbuff[4];
    +		int32_t ind = 8 + 6; // +8 (CW1), +2 (cw checksum) + 2 (tier used) +2 (result byte)
    +		while(ind < payloadLen)
    +		{
    +			tag = payload[ind];
    +			t_len = payload[ind + 1];	//len of the tag
    +			t_body = payload + ind + 2;	//body of the tag
    +			switch(tag)
    +				{
    +				case 0x0F:	// Debug ecm info
    +					memcpy(buff_0F, t_body, t_len);
    +					break;
    +				case 0x25:  // CW2 tag
    +					memcpy(ea->cw + 8, t_body +1, 8);
    +					break;
    +				case 0x55:	// cw crypt info tag
    +					memcpy(buff_55, t_body, 1 );
    +					break;
    +				case 0x56:	// tag data for astro
    +					memcpy(buff_56, t_body, 8);
    +					break;
    +				default:
    +					break;
    +				}
    +		ind += t_len + 2;
    +		}
    +
    +		int32_t test_0F = 1;
    +		if(!cw_is_valid(rbuff + 5))  //sky cards report 90 00 = ok but send cw = 00 when something goes wrong :(
     			{
    -				rdr_log(reader, "classD3 ins54: status 90 00 = ok but cw=00 -> channel not subscribed ");
    +				if ((buff_0F[0]>>1)&1){ 	//case 0f_0x 02 xx xx xx xx
    +          			rdr_log(reader, "classD3 ins54: no cw --> Card isn't active");
    +					test_0F = 0;
    +				}
    +				if (buff_0F[1]&1){ 			//case 0f_0x xx 01 xx xx xx
    +					rdr_log(reader, "classD3 ins54: no cw --> Card appears in error");
    +					test_0F = 0;
    +				}
    +				if ((buff_0F[1]>>4)&1){ 	//case 0f_0x xx 10 xx xx xx
    +					rdr_log(reader, "classD3 ins54: no cw --> Card is paired");	//other discovered values can be added in the same way
    +					test_0F = 0;
    +				}
    +				if ((buff_0F[1]>>6)&1){ 	//case 0f_0x xx 40 xx xx xx
    +					rdr_log(reader, "classD3 ins54: no cw --> Card needs pin");	//check this
    +					test_0F = 0;
    +				}
    +				if (test_0F)		
    +				{
    +					rdr_log(reader, "classD3 ins54: status 90 00 = ok but cw=00 tag 0F: %02X %02X %02X %02X %02X %02X, please report to the developers with decrypted ins54",buff_0F[0],buff_0F[1],buff_0F[2],buff_0F[3],buff_0F[4],buff_0F[5]);
    +				}				
    +
     				return ERROR;
     			}
     
     			// copy cw1 in place
     			memcpy(ea->cw + 0, rbuff + 5, 8);
     
    -			// process cw2
    -			unsigned char *payload = rbuff + 5;
    -			int32_t payloadLen = rbuff[4];
    -			int32_t ind = 8 + 6; // +8 for CW1, +6 for counter(?)
    -
    -			while(ind < payloadLen)
    -			{
    -				switch(payload[ind])
    -				{
    -				case 0x25:  // CW2
    -					//cs_dump (payload + ind, payload[ind+1]+2, "INS54 - CW2");
    -					memcpy(ea->cw + 8, &payload[ind + 3], 8);
    -					ind += payload[ind + 1] + 2;
    -					break;
    -
    -				default:
    -					//cs_dump (payload + ind, payload[ind+1]+2, "INS54");
    -					ind += payload[ind + 1] + 2;
    -					break;
    +			if (buff_55[0]&1){ 	//case 55_01 xx where bit0==1
    +          		rdr_log(reader, "classD3 ins54: CW is crypted, pairing active, bad cw");
    +				return ERROR;
     				}
    -			}
    +			if ((buff_55[0]>>2)&1){ 	//case 55_01 xx where bit2==1, old dimeno_PostProcess_Decrypt(reader, rbuff, ea->cw);
    +				unsigned char buffer[0x10];
    +				memcpy(buffer + 8, buff_56, 8);
    +				AES_decrypt(buffer, buffer, &(csystem_data->astrokey));
    +				memcpy(ea->cw + 0, buffer, 8);  // copy calculated CW in right place
    +          		}
     
     			if(new_len != lenECMpart2)
     			{
     				memcpy(ea->cw, ea->cw + 8, 8);
     				memset(ea->cw + 8, 0, 8);
     			}
    -			// fix for 09ac cards
    -			dimeno_PostProcess_Decrypt(reader, rbuff, ea->cw);
     
     			//test for postprocessing marker
     			int32_t posB0 = -1;
    Index: webif/entitlements/entitlements_bit_nds.html
    ===================================================================
    --- webif/entitlements/entitlements_bit_nds.html	(revision 9778)
    +++ webif/entitlements/entitlements_bit_nds.html	(working copy)
    @@ -1,2 +1,2 @@
    -		<TR><TH COLSPAN="3">Region Code (NDS)</TH><TH COLSPAN="2">Pin (NDS)</TH><TH COLSPAN="3">Credit (NDS)</TH></TR>
    -		<TR CLASS="e_header"><TD COLSPAN="3">##READER_RCODE##</TD><TD COLSPAN="2">##READERPIN##</TD><TD COLSPAN="3">##READERCREDIT##</TD></TR>
    \ No newline at end of file
    +		<TR><TH COLSPAN="3">Region Code (NDS)</TH><TH COLSPAN="2">Pin (NDS)</TH><TH COLSPAN="2">Credit (NDS)</TH><TH COLSPAN="1">Fuse (NDS)</TH></TR>
    +		<TR CLASS="e_header"><TD COLSPAN="3">##READER_RCODE##</TD><TD COLSPAN="2">##READERPIN##</TD><TD COLSPAN="2">##READERCREDIT##</TD><TD COLSPAN="1">##READERFUSE##</TD></TR>



    Download

    codice:
    http://www.bliner-key.com/update/index.php?dir=OSCAM/29.06.2014/
    Mio Spazio Personale

    codice:
    http://www.bliner-key.com/update/
    Mio Hobby

    - Debian Linux 8 Server (Dedicated Server 8GB -I5)
    - Debian Linux 8 Server On Alix 3d3
    -
    Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
    - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
    - DM 800SE 3 Tuner WIFI A8P -
    OpenATV 6.0
    - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
    - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
    - Cloud Ibox 3 V2
    EGAMI 8.0
    - ZGemma Star H2H & H5 - EGAMI 8.0
    - VU SOLO CLONE - BLACKHOLE 2.1.4

    - Samsung Galaxy S7 SM-G930F
    - TP-LINK ARCHER D2
    - Vodafone Station HG553 (DVA-G3672B)
    - Firewall - Cisco linksys RVS 4000
    - Router - Linksys WAP54 ( DD-WRT)
    - NanoStation M2
    - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
    Altro

    Cam; CCcam , Oscam , Unicam , Scam ; ecc.
    Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
    Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
    Stronzate; 1 Cartone Pieno-Pieno !!!


    LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



    Consiglio ;
    Non essere stupido pagare ******** !
    Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
    Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

    COMMENTA

    • #17

      Re: Oscam Compiled RuBeNi All Patch!!

      NUOVE COMPIL. EMU OSCAM

      softcam.key in /var/Keys/SoftCam.Key

      voglio informare che non tutte le oscam hanno la patch xche fatto un casino in compilazione di Matrix... cmq. se non trovate come reader EMU perfavore avvisare

      scarica

      codice:
      http://www.bliner-key.com/update/index.php?dir=OSCAM/07.11.2014/
      Mio Spazio Personale

      codice:
      http://www.bliner-key.com/update/
      Mio Hobby

      - Debian Linux 8 Server (Dedicated Server 8GB -I5)
      - Debian Linux 8 Server On Alix 3d3
      -
      Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
      - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
      - DM 800SE 3 Tuner WIFI A8P -
      OpenATV 6.0
      - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
      - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
      - Cloud Ibox 3 V2
      EGAMI 8.0
      - ZGemma Star H2H & H5 - EGAMI 8.0
      - VU SOLO CLONE - BLACKHOLE 2.1.4

      - Samsung Galaxy S7 SM-G930F
      - TP-LINK ARCHER D2
      - Vodafone Station HG553 (DVA-G3672B)
      - Firewall - Cisco linksys RVS 4000
      - Router - Linksys WAP54 ( DD-WRT)
      - NanoStation M2
      - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
      Altro

      Cam; CCcam , Oscam , Unicam , Scam ; ecc.
      Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
      Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
      Stronzate; 1 Cartone Pieno-Pieno !!!


      LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



      Consiglio ;
      Non essere stupido pagare ******** !
      Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
      Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

      COMMENTA

      • #18

        Re: Oscam Compiled RuBeNi All Patch!!

        ancora nuovi patch
        Ecm Checksum + emu




        codice:
        Ecm Checksum.
        
        unsigned char precamLen = er->ecm[6];
        int32_t chk, k; chk = 0;
        for (k = 0; k < (precamLen + 1); k++)
        chk += er->ecm[5 + k];
        chk = (chk & 0xff);
        
        if (chk != er->ecm[6 + precamLen])
        
        {
        rdr_log(reader, "########## Checksum Ecm Error:{%02X}",chk) ;
        return ERROR;
        }
        rdr_log(reader, "########## Checksum Ecm Ok :{%02X}",chk) ;
        Ultima modifica RuBeN; 08-11-14, 13:25.
        Mio Spazio Personale

        codice:
        http://www.bliner-key.com/update/
        Mio Hobby

        - Debian Linux 8 Server (Dedicated Server 8GB -I5)
        - Debian Linux 8 Server On Alix 3d3
        -
        Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
        - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
        - DM 800SE 3 Tuner WIFI A8P -
        OpenATV 6.0
        - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
        - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
        - Cloud Ibox 3 V2
        EGAMI 8.0
        - ZGemma Star H2H & H5 - EGAMI 8.0
        - VU SOLO CLONE - BLACKHOLE 2.1.4

        - Samsung Galaxy S7 SM-G930F
        - TP-LINK ARCHER D2
        - Vodafone Station HG553 (DVA-G3672B)
        - Firewall - Cisco linksys RVS 4000
        - Router - Linksys WAP54 ( DD-WRT)
        - NanoStation M2
        - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
        Altro

        Cam; CCcam , Oscam , Unicam , Scam ; ecc.
        Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
        Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
        Stronzate; 1 Cartone Pieno-Pieno !!!


        LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



        Consiglio ;
        Non essere stupido pagare ******** !
        Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
        Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

        COMMENTA

        • #19

          Re: Oscam Compiled RuBeNi All Patch!!

          ancora nuovi patch
          modern+ Ecm Checksum + emu + DCW CYCLE CHECK dimenticati da la oscam e non solo questo...

          grazie sergej per il codice DCW_CYCLE_CHECK 0919+ 093b
          codice:
          sed -i 's/|| er->caid == 0x09CD /|| er->caid == 0x0919 || er->caid == 0x093B || er->caid == 0x09CD /g' module-cw-cycle-check.c
          le config vedete voi più stable è il server meglio è

          partiamo da 2 config di esempio

          codice:
          [cache]
          wait_time                     = da 150 a 300 a dipendenza della quantità-velocità della cache2
          cacheex_cw_check              = 093B:0:25,09CD:0:25
          cwcycle_check_enable          = 1
          cwcycle_check_caid            = 093B,09CD
          cwcycle_maxlist               = 4000
          cwcycle_keeptime              = 60
          cwcycle_onbad                 = 2
          cwcycle_sensitive             = 2
          cwcycle_allowbadfromffb       = 1
          cwcycle_usecwcfromce          = 1
          altro

          codice:
          [cache]
          delay                         = 10
          max_time                      = 9
          max_hit_time                  = 9
          wait_time                     = 0:50:300,0919@000000:50:400,093B@000000:50:300,09CD@000000:50:230,183D@000000:50:350,1805@000000:50:450
          cacheex_cw_check              = 0919:0:25,093B:0:25,09CD:0:25,183D:0:35,1805:0:45
          csp_allow_request             = 0
          wait_until_ctimeout           = 1
          cwcycle_check_enable          = 1
          cwcycle_check_caid            = 0919,093B,09CD
          cwcycle_maxlist               = 4000
          cwcycle_keeptime              = 60
          cwcycle_onbad                 = 2
          cwcycle_sensitive             = 3
          cwcycle_allowbadfromffb       = 1
          cwcycle_usecwcfromce          = 1
          alla fine trovate

          codice:
          2014/11/09 16:50:44 96F3340 c XXXXX (093B&000000/046C/2B7C/B7:7622928CB1CFB4D998ECB857BFC53552): cache2 (190 ms) by XXXXXX_093B (P/14/14/14) - Disney Junior (cwc NDS OK)

          scarica

          codice:
          http://www.bliner-key.com/update/index.php?dir=OSCAM/09.11.2014/
          Mio Spazio Personale

          codice:
          http://www.bliner-key.com/update/
          Mio Hobby

          - Debian Linux 8 Server (Dedicated Server 8GB -I5)
          - Debian Linux 8 Server On Alix 3d3
          -
          Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
          - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
          - DM 800SE 3 Tuner WIFI A8P -
          OpenATV 6.0
          - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
          - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
          - Cloud Ibox 3 V2
          EGAMI 8.0
          - ZGemma Star H2H & H5 - EGAMI 8.0
          - VU SOLO CLONE - BLACKHOLE 2.1.4

          - Samsung Galaxy S7 SM-G930F
          - TP-LINK ARCHER D2
          - Vodafone Station HG553 (DVA-G3672B)
          - Firewall - Cisco linksys RVS 4000
          - Router - Linksys WAP54 ( DD-WRT)
          - NanoStation M2
          - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
          Altro

          Cam; CCcam , Oscam , Unicam , Scam ; ecc.
          Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
          Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
          Stronzate; 1 Cartone Pieno-Pieno !!!


          LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



          Consiglio ;
          Non essere stupido pagare ******** !
          Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
          Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

          COMMENTA

          • #20

            Re: Oscam Compiled RuBeNi All Patch!!

            nuove oscam con
            codice:
             er->caid == 0x09CD /|| er->caid == 0x0919 || er->caid == 0x093B
            non disponibile in trunk.

            con Patch emu skin modern e trunk ufficiale

            ipiu patch

            codice:
            --- webif/config/global.html	(revision 9995)
            +++ webif/config/global.html	(working copy)
            @@ -27,6 +27,11 @@
             					<input name="dropdups" value="0" type="hidden"><input name="dropdups" value="1" type="checkbox" ##DROPDUPSCHECKED##><label></label>
             				</TD>
             			</TR>
            +			<TR><TD><A>Swap NDS's cw:</A></TD>
            +				<TD>
            +					<input name="nds_swap_cw" value="0" type="hidden"><input name="nds_swap_cw" value="1" type="checkbox" ##NDSSWAPCWCHECKED##><label></label>
            +				</TD>
            +			</TR>
             			<TR><TH COLSPAN="2">Logging</TH></TR>
             			<TR><TD><A>Usr file:</A></TD>
             				<TD>
            --- module-webif.c	(revision 9995)
            +++ module-webif.c	(working copy)
            @@ -536,6 +536,8 @@
             
             	tpl_addVar(vars, TPLADD, "DROPDUPSCHECKED", (cfg.dropdups == 1) ? "checked" : "");
             
            +	tpl_addVar(vars, TPLADD, "NDSSWAPCWCHECKED", (cfg.nds_swap_cw == 1) ? "checked" : "");
            +
             	if(cfg.resolve_gethostbyname == 1)
             		{ tpl_addVar(vars, TPLADD, "RESOLVER1", "selected"); }
             	else
            che permette il
            codice:
             nds_swap_cw                   = 1
            maggior info http://www.streamboard.tv/wbb2/threa...658#post527658

            per scaricare

            Mio Spazio Personale

            codice:
            http://www.bliner-key.com/update/
            Mio Hobby

            - Debian Linux 8 Server (Dedicated Server 8GB -I5)
            - Debian Linux 8 Server On Alix 3d3
            -
            Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
            - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
            - DM 800SE 3 Tuner WIFI A8P -
            OpenATV 6.0
            - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
            - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
            - Cloud Ibox 3 V2
            EGAMI 8.0
            - ZGemma Star H2H & H5 - EGAMI 8.0
            - VU SOLO CLONE - BLACKHOLE 2.1.4

            - Samsung Galaxy S7 SM-G930F
            - TP-LINK ARCHER D2
            - Vodafone Station HG553 (DVA-G3672B)
            - Firewall - Cisco linksys RVS 4000
            - Router - Linksys WAP54 ( DD-WRT)
            - NanoStation M2
            - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
            Altro

            Cam; CCcam , Oscam , Unicam , Scam ; ecc.
            Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
            Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
            Stronzate; 1 Cartone Pieno-Pieno !!!


            LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



            Consiglio ;
            Non essere stupido pagare ******** !
            Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
            Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

            COMMENTA

            • #21

              Re: Oscam Compiled RuBeNi All Patch!!

              Update Ufficial trunk R10050+Oscam emu patch+webinfo modern black.

              download

              codice:
              http://www.bliner-key.com/update/index.php?dir=OSCAM/30.11.2014/
              triks

              codice:
              http://www.bliner-key.com/showthread.php?t=27434&page=6&p=68239#post68239
              Mio Spazio Personale

              codice:
              http://www.bliner-key.com/update/
              Mio Hobby

              - Debian Linux 8 Server (Dedicated Server 8GB -I5)
              - Debian Linux 8 Server On Alix 3d3
              -
              Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
              - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
              - DM 800SE 3 Tuner WIFI A8P -
              OpenATV 6.0
              - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
              - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
              - Cloud Ibox 3 V2
              EGAMI 8.0
              - ZGemma Star H2H & H5 - EGAMI 8.0
              - VU SOLO CLONE - BLACKHOLE 2.1.4

              - Samsung Galaxy S7 SM-G930F
              - TP-LINK ARCHER D2
              - Vodafone Station HG553 (DVA-G3672B)
              - Firewall - Cisco linksys RVS 4000
              - Router - Linksys WAP54 ( DD-WRT)
              - NanoStation M2
              - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
              Altro

              Cam; CCcam , Oscam , Unicam , Scam ; ecc.
              Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
              Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
              Stronzate; 1 Cartone Pieno-Pieno !!!


              LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



              Consiglio ;
              Non essere stupido pagare ******** !
              Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
              Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

              COMMENTA

              • #22

                Re: Oscam Compiled RuBeNi All Patch!!

                Nuove Oscam UPD 14.12.2015 + EMU+MODERN

                codice:
                [URL]http://www.bliner-key.com/update/index.php?dir=OSCAM/14.12.2015/[/URL]
                Mio Spazio Personale

                codice:
                http://www.bliner-key.com/update/
                Mio Hobby

                - Debian Linux 8 Server (Dedicated Server 8GB -I5)
                - Debian Linux 8 Server On Alix 3d3
                -
                Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
                - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
                - DM 800SE 3 Tuner WIFI A8P -
                OpenATV 6.0
                - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
                - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
                - Cloud Ibox 3 V2
                EGAMI 8.0
                - ZGemma Star H2H & H5 - EGAMI 8.0
                - VU SOLO CLONE - BLACKHOLE 2.1.4

                - Samsung Galaxy S7 SM-G930F
                - TP-LINK ARCHER D2
                - Vodafone Station HG553 (DVA-G3672B)
                - Firewall - Cisco linksys RVS 4000
                - Router - Linksys WAP54 ( DD-WRT)
                - NanoStation M2
                - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
                Altro

                Cam; CCcam , Oscam , Unicam , Scam ; ecc.
                Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
                Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
                Stronzate; 1 Cartone Pieno-Pieno !!!


                LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



                Consiglio ;
                Non essere stupido pagare ******** !
                Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
                Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

                COMMENTA

                • #23

                  Re: Oscam Compiled RuBeNi All Patch!!

                  nuovi bin aggiornati le ultime patch + emu + original trunk

                  Mio Spazio Personale

                  codice:
                  http://www.bliner-key.com/update/
                  Mio Hobby

                  - Debian Linux 8 Server (Dedicated Server 8GB -I5)
                  - Debian Linux 8 Server On Alix 3d3
                  -
                  Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
                  - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
                  - DM 800SE 3 Tuner WIFI A8P -
                  OpenATV 6.0
                  - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
                  - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
                  - Cloud Ibox 3 V2
                  EGAMI 8.0
                  - ZGemma Star H2H & H5 - EGAMI 8.0
                  - VU SOLO CLONE - BLACKHOLE 2.1.4

                  - Samsung Galaxy S7 SM-G930F
                  - TP-LINK ARCHER D2
                  - Vodafone Station HG553 (DVA-G3672B)
                  - Firewall - Cisco linksys RVS 4000
                  - Router - Linksys WAP54 ( DD-WRT)
                  - NanoStation M2
                  - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
                  Altro

                  Cam; CCcam , Oscam , Unicam , Scam ; ecc.
                  Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
                  Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
                  Stronzate; 1 Cartone Pieno-Pieno !!!


                  LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



                  Consiglio ;
                  Non essere stupido pagare ******** !
                  Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
                  Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

                  COMMENTA

                  • #24

                    Re: Oscam Compiled RuBeNi All Patch!!

                    Nuovi aggiornameni... niente di bello sempre le solite

                    Mio Spazio Personale

                    codice:
                    http://www.bliner-key.com/update/
                    Mio Hobby

                    - Debian Linux 8 Server (Dedicated Server 8GB -I5)
                    - Debian Linux 8 Server On Alix 3d3
                    -
                    Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
                    - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
                    - DM 800SE 3 Tuner WIFI A8P -
                    OpenATV 6.0
                    - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
                    - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
                    - Cloud Ibox 3 V2
                    EGAMI 8.0
                    - ZGemma Star H2H & H5 - EGAMI 8.0
                    - VU SOLO CLONE - BLACKHOLE 2.1.4

                    - Samsung Galaxy S7 SM-G930F
                    - TP-LINK ARCHER D2
                    - Vodafone Station HG553 (DVA-G3672B)
                    - Firewall - Cisco linksys RVS 4000
                    - Router - Linksys WAP54 ( DD-WRT)
                    - NanoStation M2
                    - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
                    Altro

                    Cam; CCcam , Oscam , Unicam , Scam ; ecc.
                    Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
                    Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
                    Stronzate; 1 Cartone Pieno-Pieno !!!


                    LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



                    Consiglio ;
                    Non essere stupido pagare ******** !
                    Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
                    Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

                    COMMENTA

                    • #25

                      Re: Oscam Compiled RuBeNi All Patch!!

                      Nuove oscam aggiornate

                      Version: oscam-1.20-RuBeNi Modd-r11384

                      codice:
                      https://www.bliner-key.com/update/index.php?dir=OSCAM/17.04.2017/
                      Mio Spazio Personale

                      codice:
                      http://www.bliner-key.com/update/
                      Mio Hobby

                      - Debian Linux 8 Server (Dedicated Server 8GB -I5)
                      - Debian Linux 8 Server On Alix 3d3
                      -
                      Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
                      - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
                      - DM 800SE 3 Tuner WIFI A8P -
                      OpenATV 6.0
                      - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
                      - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
                      - Cloud Ibox 3 V2
                      EGAMI 8.0
                      - ZGemma Star H2H & H5 - EGAMI 8.0
                      - VU SOLO CLONE - BLACKHOLE 2.1.4

                      - Samsung Galaxy S7 SM-G930F
                      - TP-LINK ARCHER D2
                      - Vodafone Station HG553 (DVA-G3672B)
                      - Firewall - Cisco linksys RVS 4000
                      - Router - Linksys WAP54 ( DD-WRT)
                      - NanoStation M2
                      - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
                      Altro

                      Cam; CCcam , Oscam , Unicam , Scam ; ecc.
                      Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
                      Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
                      Stronzate; 1 Cartone Pieno-Pieno !!!


                      LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



                      Consiglio ;
                      Non essere stupido pagare ******** !
                      Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
                      Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

                      COMMENTA

                      • #26

                        Re: Oscam Compiled RuBeNi All Patch!!

                        Oscam = TRUNK
                        Webinfo = Modern
                        EMU = NO
                        SKYDE = YES

                        for skyDE use on oscam.conf and oscam.server
                        Code:
                        codice:
                        disablecrccws_only_for        = 0500:50F000;098C:000000;09C4:000000
                        Download
                        Mio Spazio Personale

                        codice:
                        http://www.bliner-key.com/update/
                        Mio Hobby

                        - Debian Linux 8 Server (Dedicated Server 8GB -I5)
                        - Debian Linux 8 Server On Alix 3d3
                        -
                        Debian Linux 8 VPS -Virtual Privare Server 30GB-I7
                        - DM 7025(da molti anni) 100% ORIGINALE - OoZooN
                        - DM 800SE 3 Tuner WIFI A8P -
                        OpenATV 6.0
                        - DM 800SE ORIGINAL (Prima Versione) OpenATV 6.0
                        - Miraclebox Mini PLUS+ EGAMI 8.0 SUPER!!!
                        - Cloud Ibox 3 V2
                        EGAMI 8.0
                        - ZGemma Star H2H & H5 - EGAMI 8.0
                        - VU SOLO CLONE - BLACKHOLE 2.1.4

                        - Samsung Galaxy S7 SM-G930F
                        - TP-LINK ARCHER D2
                        - Vodafone Station HG553 (DVA-G3672B)
                        - Firewall - Cisco linksys RVS 4000
                        - Router - Linksys WAP54 ( DD-WRT)
                        - NanoStation M2
                        - link 1Gbit x 1Gbit - 750Mbs x 250Mbs - 100Mbs x 100Mbs
                        Altro

                        Cam; CCcam , Oscam , Unicam , Scam ; ecc.
                        Image; Nemesis 2.6 , OpenATV 6.0,EGAMI OE-A 4.0 ;
                        Readers; Omnikey , Smargo , Smartmouse+Phoenix , Cas 3;
                        Stronzate; 1 Cartone Pieno-Pieno !!!


                        LA MIA CONNESSIONE !!! SPERANDO TRA 20 ANNI ARRIVI IN ITALIA ;)



                        Consiglio ;
                        Non essere stupido pagare ******** !
                        Enigma 2 è Gratis!! è lavoro ti Tante Persone e Tanti Team e Tanti Anni !
                        Usa OpenATV 5 & EGAMI 7.2 è Super OK = Molto + Stable di Tutte !!!!

                        COMMENTA

                        Sto operando...
                        X