utorrent torrent dosyalarını nerede tutuyor

quake 4 indirdim oynadım eskice bir oyun ama olsun quake always rocks. neyse arkadaşa indirde multiplayerdan kafana verim diodum torrenti vermem gerekti. ie ff veya chrome la çekin hepsi ayrı yerlere bırakıyor. bende genelde çalıştır diyorum torrent dosyaları için ve utorrent indirmeye başlıyor. peki bu torrent dosyaları nerde. windows 7 de şurda

C:UsersUSERNAMEAppDataRoaminguTorrent

diğer sistemlerde de benzeri appdata veya local datadadır bakınız……

Sweden must be a good place

I have been searching which movie coming out and how is going the media. anyway somehow I find myself reading letters between thepiratebay.org and big firm’s law departments. for example apple and microsoft and dreamworks. you name it 🙂 who has a big firm and a production sent them a mail and they respond to these mails as rude as possible 🙂

I dunno this story is true or lie but I like these words exactly from letters:

As you may or may not be aware, Sweden is not a state in the United States
of America. Sweden is a country in northern Europe.
Unless you figured it out by now, US law does not apply here.
For your information, no Swedish law is being violated.

after now I am fan of Sweden 🙂

play3w hack 2

bundan bir zaman önce play3w nin ne olduğunu nasıl kırılacağını anlatan bir yazı yazmıştım hemen üstünede ufak bir proje yapıp perl ile uğraşmak istemeyenler için c++ ilen konuyu çözmüştüm. fekat burda yayınlamadığımı fark ettim.

program gayet basit bir input dosya veriyorsunuz birde output ismini yazıyorsunuz. oda play3w nin gereksiz kısımlarını silip size yalın bir avi veriyor. yazalıda epey oldu hala çalışıyormu emin değilim bir arıza çıkarsa diye kodu da sayfada mevcut.

play3w nedir (hack)

play3w nedir? torrent aleminde aXXo nickli elemanın dünyayı hackleme planıdır. arkadaş azmedip basit bir player yazmış torrentden çekdiğiniz axxo nickli avilerde ortaya çıkıo. playon.play3w.com a gidip player ı indiriosunuz kullanıyorsunuz hesapta basit player bir trojan herkez öyle dio en azından ben kullanmam öle bilmediğim şeyi neyse. bu durum deli edio neden çünkü güzel güzel izleyecekken pat diye bir uyarı çıkıo hadi onu çek bunu kur nedir bu ayıp…
neyse nasıl hacklenir konusunun cevabı
http://forum.mininova.org/index.php?showtopic=234994521

de yatıyor. kısaca aşşağıdaki kodu pl uzantılı bir dosyaya kaydedin ve “perl dosya.pl in.avi out.avi” komutunu çalıştırıp kurtulun. perl için activstate buradan alın.

# Turn of output buffer
$|++;

# The key for XOR decryption
my $key = ‘UIERYQWORTWEHLKDNKDBISGLZNCBZCVNBADFIEYLJ’ . chr(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 AVIn”;
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 $offsetn”;

# 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 $offsetn”;
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 %sn”, $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;
# print the status
printf “r %d written (% .1f %%)”, $bytes, ($bytes / $insize * 100);
}
# Close both files
close OUT;
close IN;
print “nnDONE!n”;