The bot should be able to take advantage of ssh keyauth and issue all commands via curl or wget on a different host so you can control a whole bunch of bots from one machine without them being able to track them to one IP.
wget options:
--save-headers should get us the returned cookies
--post-data for forms
--output-document - to post everything to stdout
--referer to hide our tracks...
--user-agent to also hide our tracks
--no-cookies --header "Cookie: name=value"
curl options:
--referer to hide our tracks
--user-agent to hide our tracks
--cookie "name=value"
--data for forms or maybe --form-string
--include for header / cookie output
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=868604
Originator: YES
wget options:
--save-headers should get us the returned cookies
--post-data for forms
--output-document - to post everything to stdout
--referer to hide our tracks...
--user-agent to also hide our tracks
--no-cookies --header "Cookie: name=value"
curl options:
--referer to hide our tracks
--user-agent to hide our tracks
--cookie "name=value"
--data for forms or maybe --form-string
--include for header / cookie output