intadd@ubuntu:/home$
sudo -s
[sudo] password for intadd:

intadd@ubuntu:/home#
python3
Python 3.6.9 (default, Apr 18 2020, 01:56:04)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
>>> res=requests.get("http://InPeaceForLife.how",headers="{'name':'intadd','birth':'971219'}")
>>> res
<Response [200]>
>>> res.text
'We have to love each other.'
>>> f = open("/var/log/intadd/20200706_notepad.log",'a')
>>> f.write(res.text)
27
>>> f.close()
>>> exit();
intadd@ubuntu:/home#
ls
Contact   Blog    WhoAmI
intadd@ubuntu:/home#
exit;
exit
intadd@ubuntu:/home$
id
uid=1000(intadd) gid=1001(KIA) groups=1001(KIA)
intadd@ubuntu:/home$