We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support --proxy options. it is xspear scanning with proxy server
--proxy
The text was updated successfully, but these errors were encountered:
The next best option is proxychains4.
$ proxychains4 xspear -u "your-target"
Sorry, something went wrong.
Code Snippet
ENV['http_proxy'] = 'http://127.0.0.1:8080' # your http://address:port here
or
proxy_addr = 'proxy' proxy_port = 8080 Net::HTTP.new('www.hahwul.com', nil, proxy_addr, proxy_port).start { |http| # always proxy via your.proxy.addr:8080 http.get('www.hahwul.com', '') }
hahwul
No branches or pull requests
support
--proxy
options. it is xspear scanning with proxy serverThe text was updated successfully, but these errors were encountered: