Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get the source code of website using lynx

As I can access the source code with lynx, w3m, links, etc. protected with a form.

lynx -source -auth=user:pass domain.com

lynx -source -accept_all_cookies -auth=user:pass domain.com 

lynx -accept_all_cookies -auth=user:pass domain.com

all fail me.

thx.

like image 607
user1847844 Avatar asked Oct 13 '25 12:10

user1847844


1 Answers

What about:

lynx --source -accept_all_cookies -auth=user:pass "domain.com"

The -- and the semicolon play the role for me sometimes.

like image 121
Rishav Avatar answered Oct 15 '25 05:10

Rishav