http://digitalpbk.blogspot.com/2009/10/ftpchk3-virus-php-pl-hacked-website.html
.#!/usr/bin/perl# http://digitalpbk.blogspot.com/2009/10/ftpchk3-virus-php-pl-
hacked-website.htmluse strict;`grep -Rn aWYoIWlzc2V0KCRiMHNyMSkpe2Z1bmN0aW9u * | cut -d ':' -f 1 > listofinfected`;open FP,"listofinfected";my $file;while($file = ){ print "Testing $file ... "; chomp($file); if(-e ($file)){ open VI,$file; my @filecon = ; close VI; if($filecon[0] =~ m/aWYoIWlzc2V0KCRiMHNyMSkpe2Z1bmN0aW9u/){ $filecon[0] =~ s ...
Published 2 years, 7 months ago
http://digitalpbk.blogspot.com/2006/12/introduction-to-xss-part-1.html
Introduction to XSS Part 1
This document is purely for illustrative purposes only. I am not responsible for any losses arising to the websites mentioned below. Webmasters please be more alert...What is it?XSS stands for cross site scripting (CSS) Since CSS is already taken by Cascaded Style Sheets, it is named XSS X standing for a Cross. It is a kind of
hacking which allows you to deface websites, loggin as another user etc. IntroductionLet us start by looking how websites work. Starting ...
Published 5 years, 5 months ago