ParamSpider
ParamSpider copied to clipboard
does not find parameters
I have problem becouse paramspider not fint paramaters:( why?
I have website:
└─# cat /var/www/html/index.php
<form action="index.php" method="get">
<input type="text" name="name" value="name">
<input type="submit" name="send" value="send">
</form>
<a href="index.php?name=michas">aaa</a>
Look this shit
<?php
echo $_GET['name'];
?>
i run paramspider:
┌──(root💀za)-[/opt/ParamSpider]
└─# python3 /opt/ParamSpider/paramspider.py --domain http://mydomian/index.php
___ _ __
/ _ \___ ________ ___ _ ___ ___ (_)__/ /__ ____
/ ___/ _ `/ __/ _ `/ ' \(_-</ _ \/ / _ / -_) __/
/_/ \_,_/_/ \_,_/_/_/_/___/ .__/_/\_,_/\__/_/
/_/
- coded with <3 by Devansh Batham
Can not get target information
If you think this is a bug or unintentional behaviour. Report here : https://github.com/devanshbatham/ParamSpider/issues
[+] Total unique urls found : 0
[+] Output is saved here : output/http://maindomain/index.php.txt
[!] Total execution time : 0.48279s
┌──(root💀za)-[/opt/ParamSpider]
CURL:
┌──(root💀za)-[/opt/ParamSpider]
└─# curl http://mydomain/index.php
<form action="index.php" method="get">
<input type="text" name="name" value="name">
<input type="submit" name="send" value="send">
</form>
<a href="index.php?name=michas">aaa</a>
Look this shit
┌──(root💀za)-[/opt/ParamSpider]
└─# **curl http://mydomainl/index.php?name=XSS**
<form action="index.php" method="get">
<input type="text" name="name" value="name">
<input type="submit" name="send" value="send">
</form>
<a href="index.php?name=michas">aaa</a>
Look this shit
**XSS**
┌──(root💀za