duminică, 3 februarie 2008
Fast & Furious Romanian Style
Super tare filmul. Chiar inspirati baietii.
Vedeti si driftul facut 100% in romania.
Drift 2008
Sa stea japonezi pe poponeatza lor ca nu stiu ce fac.
Autovehicul:
- Model: C.A.R.U.T.A
- An fab.: 2007
- Cap. cilindrica: 2 saci fan
- Putere Kw: 44
- Caracteristici: BTE(Balegar turbo exhaust), ABS , ESP, Oglinzi electrice, Climatronic,incalzire solara si aerisere eoliana
miercuri, 30 ianuarie 2008
Chuck Norris
Am dat peste site-ul cu curiozitati despre Chuck Norris : chucknorrisfacts.com . Super tare site-u niste nebuneli nebune scrise de un pustan si acum site-ul are un rating beton. In fine intrati,cititi,vedeti, ca merita .
Chiar si Mountaini Dew se foloseste de imaginea lui Chuck Norris pentru a-si promova produsul
Ce sa mai zic chiar si Googel-u nu se lasa mai prejos. Cautati 'find Chuck Norris' pe google dar dati I'm feeling lucky(Ma simt norocos :P)
- Daca ai in buzunar 5 $ si Chuck Norris are 5 $, atunci Chuck Norris are mai multi bani decat tine.
- Chuck Norris poate sa omoare 2 pietre cu o pasare.
- Cand Chuck Norris intra in apa,Chuck Norris nu se uda, apa se Chuck Norris.
- Cand Bau-Bau merge sa doarma in fiecare seara se uita in dulap dupa Chuck Norris.
- Spatiu Stelar exista doar pentru ca se teme sa fie pe aceeasi planeta cu Chuck Norris.
- Chuck Norris nu doarme.Chuck Norris asteapta.
- Chuck Norris a numarata pana la infinit, de doua ori.
- Chuck Norris nu poarta ceas, Chuck Norris decide ce ora e.
Chiar si Mountaini Dew se foloseste de imaginea lui Chuck Norris pentru a-si promova produsul
Ce sa mai zic chiar si Googel-u nu se lasa mai prejos. Cautati 'find Chuck Norris' pe google dar dati I'm feeling lucky(Ma simt norocos :P)
joi, 24 ianuarie 2008
Dom Player Hack
Sa zicem ca am avut niste fisiere.avi care erau blocate cumva sa fie vazute doar cu Dom Player. Bun dar eu vreau sa vad filmu fara sa scot spyware si adware si alte rahaturi de programele care vin de pe torenti. Asa ca am cautat si am gasit un script in perl si l-am modificat un pic ca sa decodeze mai rapid filmele astea encodate cu Dom Player. Am facut un Dom Player Hack tool. Partea nasola a cu scriptu asta e ca trebuie neaparat perl ca sa poata rula dar partea buna este ca in cam 5 minute decodeaza un film encodat cu Dom Player-u asta.
# Turn of output buffer
$|++;
# The key for XOR decryption
my $key = 'UIERYQWORTWEHLKDNKDBISGLZNCBZCVNBADFIEYLJ' . chr(0);
my $times=0;
print "Reading from \"$ARGV[0]\":\n";
$insize = -s $ARGV[0];
# Open the bogus AVI file
open(IN, $ARGV[0]) or die $!;
binmode IN;
# Read Header to check
read(IN, $buffer, 4);
if ($buffer ne 'RIFF') {
print " ERROR: \"$ARGV[0]\" is not an AVI\n";
close IN;
exit(1);
}
# Get Length of the unencrypted movie
read(IN, $buffer, 4);
$offset = unpack 'L', $buffer;
print " End of the unencrypted movie is at byte offset $offset\n";
# Jump to the read offset
seek(IN, $offset, 0);
# The next 4 or 8 Bytes seem to be either an unsinged long
# or an unsigned quad. This is another offset to jump
# over some filler bytes. Right now I can't really tell if
# it's 4 or 8 bytes, because I only have 1 file to test with.
# I assume it's a quad.
# low word
read(IN, $buffer, 4);
$offlo = unpack 'L', $buffer;
# high word
read(IN, $buffer, 4);
$offhi = unpack 'L', $buffer;
# Calculate offset
$offset = $offhi * 4294967296 + $offlo;
print " Offset after the unencrypted movie is $offset\n";
seek(IN, $offset, 0);
# Then there seem to be another 100 filler bytes
# with value 0xff. Jump over those too, to get
# to the offset where the real movie starts.
printf " Adding extra filler bytes, final offset is %s\n", $offset+100;
seek(IN, 100, 1);
# Update the size
$insize -= $offset+100;
# Open a file for writing the decrypted data to
print "Decrypting to \"$ARGV[1]\":\n";
open(OUT, ">$ARGV[1]");
binmode OUT;
truncate OUT, 0;
$bytes = 0;
$klen = length($key);
# Read key length bytes, decrypt them and
# write them to the output file untill you reach
# the end of the file
while ( read(IN, $buffer, $klen) ) {
$buffer ^= $key;
print OUT $buffer;
$bytes += $klen;
if ($times%1000==0)
{
printf "\r written (% .1f %%)", ($bytes / $insize * 100);
$times=0;
}
++$times;
}
# Close both files
close OUT;
close IN;
print "\n\nDONE!\n";
Pentru a rula scriptu asta puteti downloada Active Perl . Se instaleaza usor si gasiti si instructiuni usor de folosit. Scriptul Dom Player Hack se poate descarca si de aici folosind parola stixuriverbale.
# Turn of output buffer
$|++;
# The key for XOR decryption
my $key = 'UIERYQWORTWEHLKDNKDBISGLZNCBZCVNBADFIEYLJ' . chr(0);
my $times=0;
print "Reading from \"$ARGV[0]\":\n";
$insize = -s $ARGV[0];
# Open the bogus AVI file
open(IN, $ARGV[0]) or die $!;
binmode IN;
# Read Header to check
read(IN, $buffer, 4);
if ($buffer ne 'RIFF') {
print " ERROR: \"$ARGV[0]\" is not an AVI\n";
close IN;
exit(1);
}
# Get Length of the unencrypted movie
read(IN, $buffer, 4);
$offset = unpack 'L', $buffer;
print " End of the unencrypted movie is at byte offset $offset\n";
# Jump to the read offset
seek(IN, $offset, 0);
# The next 4 or 8 Bytes seem to be either an unsinged long
# or an unsigned quad. This is another offset to jump
# over some filler bytes. Right now I can't really tell if
# it's 4 or 8 bytes, because I only have 1 file to test with.
# I assume it's a quad.
# low word
read(IN, $buffer, 4);
$offlo = unpack 'L', $buffer;
# high word
read(IN, $buffer, 4);
$offhi = unpack 'L', $buffer;
# Calculate offset
$offset = $offhi * 4294967296 + $offlo;
print " Offset after the unencrypted movie is $offset\n";
seek(IN, $offset, 0);
# Then there seem to be another 100 filler bytes
# with value 0xff. Jump over those too, to get
# to the offset where the real movie starts.
printf " Adding extra filler bytes, final offset is %s\n", $offset+100;
seek(IN, 100, 1);
# Update the size
$insize -= $offset+100;
# Open a file for writing the decrypted data to
print "Decrypting to \"$ARGV[1]\":\n";
open(OUT, ">$ARGV[1]");
binmode OUT;
truncate OUT, 0;
$bytes = 0;
$klen = length($key);
# Read key length bytes, decrypt them and
# write them to the output file untill you reach
# the end of the file
while ( read(IN, $buffer, $klen) ) {
$buffer ^= $key;
print OUT $buffer;
$bytes += $klen;
if ($times%1000==0)
{
printf "\r written (% .1f %%)", ($bytes / $insize * 100);
$times=0;
}
++$times;
}
# Close both files
close OUT;
close IN;
print "\n\nDONE!\n";
Pentru a rula scriptu asta puteti downloada Active Perl . Se instaleaza usor si gasiti si instructiuni usor de folosit. Scriptul Dom Player Hack se poate descarca si de aici folosind parola stixuriverbale.
Abonați-vă la:
Postări (Atom)