1
0

ADMbot.sh 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293
  1. #!/bin/bash
  2. #26/01/2021
  3. clear
  4. clear
  5. # DIRECCIONES DE CARPETAS Y ARCHIVOS
  6. SCPdir="/etc/VPS-MX" && [[ ! -d ${SCPdir} ]] && exit 1
  7. SCPusr="${SCPdir}/controlador" && [[ ! -d ${SCPusr} ]] && mkdir ${SCPusr}
  8. SCPfrm="${SCPdir}/herramientas" && [[ ! -d ${SCPfrm} ]] && mkdir ${SCPfrm}
  9. SCPinst="${SCPdir}/protocolos" && [[ ! -d ${SCPfrm} ]] && mkdir ${SCPfrm}
  10. SCPidioma="${SCPdir}/idioma" && [[ ! -e ${SCPidioma} ]] && touch ${SCPidioma}
  11. mkdir -p /etc/BOT &>/dev/null
  12. mkdir -p /etc/BOT-C &>/dev/null
  13. mkdir -p /etc/BOT-A &>/dev/null
  14. mkdir -p /etc/BOT-GEN &>/dev/null
  15. mkdir -p /etc/BOT-C2 &>/dev/null
  16. mkdir -p /etc/BOT-TEMP &>/dev/null
  17. USRdatacredi="/etc/BOT-C2/creditos"
  18. ##### SERVIDOR TELEGRAM PERSONAL
  19. [[ $(dpkg --get-selections|grep -w "jq"|head -1) ]] || apt-get install jq -y &>/dev/null
  20. [[ ! -e "/bin/ShellBot.sh" ]] && wget -O /bin/ShellBot.sh https://raw.githubusercontent.com/NetVPS/VPS-MX_Oficial/master/LINKS-LIBRERIAS/ShellBot.sh &> /dev/null
  21. [[ -e /etc/texto-bot ]] && rm /etc/texto-bot
  22. ##### VERIFICANDO PAQUETES PRIMARIOS
  23. [[ $(dpkg --get-selections|grep -w "jq"|head -1) ]] || apt-get install jq -y &>/dev/null
  24. [[ $(dpkg --get-selections|grep -w "vnstat"|head -1) ]] || apt-get install vnstat -y &>/dev/null
  25. [[ $(dpkg --get-selections|grep -w "vnstati"|head -1) ]] || apt-get install vnstati -y &>/dev/null
  26. [[ $(dpkg --get-selections|grep -w "nmap"|head -1) ]] || apt-get install nmap -y &>/dev/null
  27. ## INGRESO DE TOKEN BOT
  28. clear
  29. msg -bar
  30. msg -tit
  31. msg -ama " ## BOT DE GESTION | VPS-MX By @Kalix1 ## \033[1;31m"
  32. msg -bar
  33. if [[ $1 = "id" || -z $(ps aux |grep -v grep |grep -w "ADMbot.sh"|grep dmS|awk '{print $2}') ]]; then
  34. [[ -z $2 ]] && echo -ne "\033[1;96m #Digite el Token del BOT\033[0;92m\nTOKEN: \033[0;97m" && read TOKEN || TOKEN="$2"
  35. [[ -z "$TOKEN" ]] && exit 1 #SEM TOKEN, SEM BOT
  36. IDIOMA="$(cat ${SCPidioma})" && [[ -z $IDIOMA ]] && IDIOMA="es" #ARGUMENTO 2 (IDIOMA)
  37. [[ -z $3 ]] && echo -ne "\033[1;96m #Digite un nombre para su Usuario\033[0;92m \nUSUARIO: \033[0;97m" && read USERLIB || USERLIB="$3"
  38. [[ -z "$USERLIB" ]] && exit 1 #USUARIO
  39. [[ -z $4 ]] && echo -ne "\033[1;96m #Digite una contraseña para su Usuario\033[0;92m \nCONTRASEÑA: \033[0;97m" && read PASSLIB || PASSLIB="$4"
  40. [[ -z "$PASSLIB" ]] && exit 1 #SENHA
  41. [[ -z $2 ]] && [[ -z $3 ]] && [[ -z $4 ]] && {
  42. screen -dmS telebot ${SCPfrm}/ADMbot.sh id "$TOKEN" "$USERLIB" "$PASSLIB"
  43. msg -bar
  44. echo -e "\033[1;92m BOT INICIADO CON EXCITO"
  45. msg -bar
  46. exit 0
  47. }
  48. else
  49. kill -9 $(ps aux |grep -v grep |grep -w "ADMbot.sh"|grep dmS|awk '{print $2}') && echo -e "\033[1;91m BOT DETENIDO CON EXCITO"
  50. msg -bar
  51. exit 0
  52. fi
  53. LINE='━━━━━━━━━━━━━━━━━━━━'
  54. USRdatabase="/etc/VPS-MX/VPS-MXuser"
  55. #IMPORTANDO API
  56. source ShellBot.sh
  57. ShellBot.init --token "$TOKEN"
  58. ShellBot.username
  59. # SUPRIME ERROS
  60. exec 2>/dev/null
  61. # SISTEMA DE PIDS
  62. dropbear_pids () {
  63. unset pids
  64. port_dropbear=`ps aux | grep dropbear | awk NR==1 | awk '{print $17;}'`
  65. log=/var/log/auth.log
  66. loginsukses='Password auth succeeded'
  67. [[ -z $port_dropbear ]] && return 1
  68. for port in `echo $port_dropbear`; do
  69. for pidx in $(ps ax |grep dropbear |grep "$port" |awk -F" " '{print $1}'); do
  70. pids="${pids}$pidx\n"
  71. done
  72. done
  73. for pid in `echo -e "$pids"`; do
  74. pidlogs=`grep $pid $log |grep "$loginsukses" |awk -F" " '{print $3}'`
  75. i=0
  76. for pidend in $pidlogs; do
  77. let i++
  78. done
  79. if [[ $pidend ]]; then
  80. login=$(grep $pid $log |grep "$pidend" |grep "$loginsukses")
  81. PID=$pid
  82. user=`echo $login |awk -F" " '{print $10}' | sed -r "s/'//g"`
  83. waktu=$(echo $login |awk -F" " '{print $2"-"$1,$3}')
  84. [[ -z $user ]] && continue
  85. echo "$user|$PID|$waktu"
  86. fi
  87. done
  88. }
  89. openvpn_pids () {
  90. #nome|#loguin|#rcv|#snd|#time
  91. byte () {
  92. while read B dummy; do
  93. [[ "$B" -lt 1024 ]] && echo "${B} bytes" && break
  94. KB=$(((B+512)/1024))
  95. [[ "$KB" -lt 1024 ]] && echo "${KB} Kb" && break
  96. MB=$(((KB+512)/1024))
  97. [[ "$MB" -lt 1024 ]] && echo "${MB} Mb" && break
  98. GB=$(((MB+512)/1024))
  99. [[ "$GB" -lt 1024 ]] && echo "${GB} Gb" && break
  100. echo $(((GB+512)/1024)) terabytes
  101. done
  102. }
  103. for user in $(mostrar_usuarios); do
  104. [[ ! $(sed -n "/^${user},/p" /etc/openvpn/openvpn-status.log) ]] && continue
  105. i=0
  106. unset RECIVED
  107. unset SEND
  108. unset HOUR
  109. while read line; do
  110. IDLOCAL=$(echo ${line}|cut -d',' -f2)
  111. RECIVED+="$(echo ${line}|cut -d',' -f3)+"
  112. SEND+="$(echo ${line}|cut -d',' -f4)+"
  113. DATESEC=$(date +%s --date="$(echo ${line}|cut -d',' -f5|cut -d' ' -f1,2,3,4)")
  114. TIMEON="$(($(date +%s)-${DATESEC}))"
  115. MIN=$(($TIMEON/60)) && SEC=$(($TIMEON-$MIN*60)) && HOR=$(($MIN/60)) && MIN=$(($MIN-$HOR*60))
  116. HOUR+="${HOR}h:${MIN}m:${SEC}s\n"
  117. let i++
  118. done <<< "$(sed -n "/^${user},/p" /etc/openvpn/openvpn-status.log)"
  119. RECIVED=$(echo $(echo ${RECIVED}0|bc)|byte)
  120. SEND=$(echo $(echo ${SEND}0|bc)|byte)
  121. HOUR=$(echo -e $HOUR|sort -n|tail -1)
  122. echo -e "$user|$i|$RECIVED|$SEND|$HOUR"
  123. done
  124. }
  125. # ADICIONA USUARIO
  126. add_user () {
  127. #nome senha Dias limite
  128. [[ $(cat /etc/passwd |grep $1: |grep -vi [a-z]$1 |grep -v [0-9]$1 > /dev/null) ]] && return 1
  129. valid=$(date '+%C%y-%m-%d' -d " +$3 days") && datexp=$(date "+%F" -d " + $3 days")
  130. useradd -M -s /bin/false $1 -e ${valid} > /dev/null 2>&1 || return 1
  131. (echo $2; echo $2)|passwd $1 2>/dev/null || {
  132. userdel --force $1
  133. return 1
  134. }
  135. [[ -e ${USRdatabase} ]] && {
  136. newbase=$(cat ${USRdatabase}|grep -w -v "$1")
  137. echo "$1|$2|${datexp}|$4" > ${USRdatabase}
  138. for value in `echo ${newbase}`; do
  139. echo $value >> ${USRdatabase}
  140. done
  141. } || echo "$1|$2|${datexp}|$4" > ${USRdatabase}
  142. }
  143. # REMOVER USUARIO
  144. rm_user () {
  145. #nome
  146. userdel --force "$1" &>/dev/null || return 1
  147. [[ -e ${USRdatabase} ]] && {
  148. newbase=$(cat ${USRdatabase}|grep -w -v "$1")
  149. rm ${USRdatabase} && touch ${USRdatabase}
  150. for value in `echo ${newbase}`; do
  151. echo $value >> ${USRdatabase}
  152. done
  153. }
  154. }
  155. # LISTA OS USUARIOS CADASTRADOS
  156. mostrar_usuarios () {
  157. for u in `awk -F : '$3 > 900 { print $1 }' /etc/passwd | grep -v "nobody" |grep -vi polkitd |grep -vi system-`; do
  158. echo "$u"
  159. done
  160. }
  161. # DEFINE UM IP
  162. meu_ip () {
  163. if [[ -e /etc/VPS-MX/MEUIPvps ]]; then
  164. echo "$(cat /etc/VPS-MX/MEUIPvps)"
  165. else
  166. MEU_IP=$(ip addr | grep 'inet' | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -o -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | head -1)
  167. MEU_IP2=$(wget -qO- ipv4.icanhazip.com)
  168. [[ "$MEU_IP" != "$MEU_IP2" ]] && echo "$MEU_IP2" || echo "$MEU_IP"
  169. echo "$MEU_IP" > /etc/VPS-MX/MEUIPvps
  170. fi
  171. }
  172. # USUARIO BLOCK
  173. blockfun () {
  174. local bot_retorno="$LINE\n"
  175. bot_retorno+="--❌ USTED NO PUEDE USAR EL BOT ❌--\n"
  176. bot_retorno+="$LINE\n"
  177. bot_retorno+="_--Si eres ADMIN introduse tus credenciales--_\n"
  178. bot_retorno+="$LINE\n"
  179. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  180. --text "$(echo -e $bot_retorno)" \
  181. --parse_mode markdown
  182. return 0
  183. }
  184. # SISTEMA DE LOGUIN
  185. ativarid_fun () {
  186. if [[ ! -z $LIBERADOS ]] && [[ $(echo ${LIBERADOS}|grep -w "$3") ]]; then
  187. local bot_retorno+="$LINE\n"
  188. bot_retorno+="- - 🔰 ACESSO DE ADMIN LIBERADO 🔰 - - \n"
  189. bot_retorno+="$LINE\n"
  190. bot_retorno+="✌️ Usted ya Puede usar el Bot\n"
  191. bot_retorno+="👉 Dele Buen Uso\n"
  192. bot_retorno+="⚙️ Comando Principal: * /menu *\n"
  193. bot_retorno+="$LINE\n"
  194. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  195. --text "$(echo -e $bot_retorno)" \
  196. --parse_mode markdown
  197. return 0
  198. elif [[ $1 = ${USERLIB} ]] && [[ $2 = ${PASSLIB} ]]; then
  199. [[ -z $LIBERADOS ]] && LIBERADOS="${3}" || LIBERADOS="${LIBERADOS} ${3}"
  200. local bot_retorno+="$LINE\n"
  201. bot_retorno+="- - 🔰 ACESSO DE ADMIN LIBERADO 🔰 - - \n"
  202. bot_retorno+="$LINE\n"
  203. bot_retorno+="✌️ Usted ya Puede usar el Bot\n"
  204. bot_retorno+="👉 Dele Buen Uso\n"
  205. bot_retorno+="⚙️ Comando Principal: * /menu *\n"
  206. bot_retorno+="$LINE\n"
  207. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  208. --text "$(echo -e $bot_retorno)" \
  209. --parse_mode markdown
  210. return 0
  211. else
  212. local bot_retorno+="$LINE\n"
  213. bot_retorno+="--❌ ERROR DE CREDENCIALES ADMIN ❌--\n"
  214. bot_retorno+="$LINE\n"
  215. bot_retorno+="_Acesso de ADMIN Negado_\n"
  216. bot_retorno+="_Usuario/Contraseña Erroneos_\n"
  217. bot_retorno+="$LINE\n"
  218. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  219. --text "$(echo -e $bot_retorno)" \
  220. --parse_mode markdown
  221. return 0
  222. fi
  223. }
  224. loguin_fun () {
  225. local bot_retorno+="$LINE\n"
  226. bot_retorno+="USUARIOS CON ACCESO AL ADMIN\n"
  227. bot_retorno+="$LINE\n"
  228. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  229. --text "$(echo -e $bot_retorno)" \
  230. --parse_mode markdown
  231. for lines in $(echo $LIBERADOS); do
  232. local bot_retorno+="$LINE\n"
  233. bot_retorno2+="$Usuario ID: $lines\n"
  234. bot_retorno+="$LINE\n"
  235. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  236. --text "$(echo -e $bot_retorno2)" \
  237. --parse_mode markdown
  238. done
  239. return 0
  240. }
  241. # INFORMAÇÕES DA VPS
  242. infovps () {
  243. mine_port () {
  244. unset portas
  245. portas_var=$(lsof -V -i tcp -P -n | grep -v "ESTABLISHED" |grep -v "COMMAND" | grep "LISTEN")
  246. i=0
  247. while read port; do
  248. var1=$(echo $port | awk '{print $1}') && var2=$(echo $port | awk '{print $9}' | awk -F ":" '{print $2}')
  249. [[ "$(echo -e ${portas}|grep "$var1|$var2")" ]] || {
  250. portas+="$var1|$var2\n"
  251. let i++
  252. }
  253. done <<< "$portas_var"
  254. echo -e $portas
  255. }
  256. local bot_retorno="$LINE\n"
  257. bot_retorno+="*Puertos y Protocolos Activos*\n"
  258. bot_retorno+="$LINE\n"
  259. bot_retorno+="*IP:* $(meu_ip)\n"
  260. while read line; do
  261. local serv=$(echo $line|cut -d'|' -f1)
  262. local port=$(echo $line|cut -d'|' -f2)
  263. bot_retorno+="*Servicio:* ${serv} *Puerto:* ${port}\n"
  264. done <<< "$(mine_port)"
  265. bot_retorno+="$LINE\n"
  266. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  267. --text "$(echo -e $bot_retorno)" \
  268. --parse_mode markdown
  269. return 0
  270. }
  271. # AJUDA
  272. ajuda_fun () {
  273. #MONITOR UDP
  274. on=" [ ACTIVADO ] " && off=" [ DESACTIVADO ] "
  275. [[ $(ps x | grep badvpn | grep -v grep | awk '{print $1}') ]] && badvpn=$on || badvpn=$off
  276. #CUENTAS REGISTRADAS SSH
  277. SSHN="$(grep -c home /etc/passwd)"
  278. SSH2="$(echo ${SSHN}|bc)-2"
  279. echo "${SSH2}"|bc > /etc/BOT-A/SSH20.log
  280. SSH3="$(less /etc/BOT-A/SSH20.log)"
  281. SSH4="$(echo $SSH3)"
  282. #ONLINES
  283. ONLINES="$(less /etc/VPS-MX/USRonlines)"
  284. ##DEMOS REGISTRADOS
  285. demo=`cd /etc/BOT-TEMP && ls | wc -l`
  286. cd
  287. ##DEMOS RESTANTES
  288. demo2="10-$(echo ${demo}|bc)+0"
  289. echo "${demo2}"|bc > /etc/BOT-A/SSH-DEMO.log
  290. demo3="$(less /etc/BOT-A/SSH-DEMO.log)"
  291. demor="$(echo $demo3)"
  292. local bot_retorno="*$LINE*\n"
  293. bot_retorno+="*🔰 MANAGER VPS-MX 2.0 🔰*\n"
  294. bot_retorno+="$LINE\n"
  295. bot_retorno+="_▪️ SSH REGISTRADAS:_ ( *$SSH4* )\n"
  296. bot_retorno+="_▪️ CONECTADOS:_ ( *$ONLINES* )\n"
  297. bot_retorno+="_▪️ BADVPN:_ 🎮 *$badvpn* \n"
  298. bot_retorno+="$LINE\n"
  299. bot_retorno+=" _COMANDOS DISPONIBLES _\n"
  300. bot_retorno+="----------------------------------\n"
  301. bot_retorno+="/agregar -->> Agregar Usuario\n"
  302. [[ $(dpkg --get-selections|grep -w "openvpn"|head -1) ]] && [[ -e /etc/openvpn/openvpn-status.log ]] && bot_retorno+="/openadd ($(fun_trans "crear archivo openvpn"))\n"
  303. bot_retorno+="/eliminar -->> Remover Usuario\n"
  304. bot_retorno+="/renovar -->> Renovar Cuenta\n"
  305. bot_retorno+="/usuarios -->> Info de Usuarios\n"
  306. bot_retorno+="/verbloqueados -->> Usuarios Bloqueados\n"
  307. bot_retorno+="/bloquear -->> Bloquear Usuario\n"
  308. bot_retorno+="/desbloquear -->> Desbloquear Usuario\n"
  309. bot_retorno+="/online -->> Usuarios Online\n"
  310. bot_retorno+="/infovps -->> Info de Servidor\n"
  311. bot_retorno+="$LINE\n"
  312. bot_retorno+=" _ HERRAMIENTAS _\n"
  313. bot_retorno+="----------------------------------\n"
  314. bot_retorno+="/lang -->> Traducir texto\n"
  315. bot_retorno+="/scan -->> Scan de Subdominios\n"
  316. bot_retorno+="/gerar -->> Cod y Dec Texto\n"
  317. bot_retorno+="/sshi -->> Info de cuenta SSH\n"
  318. bot_retorno+="/admins -->> ADMIN's con Acceso\n"
  319. bot_retorno+="$LINE\n"
  320. bot_retorno+="/ADMIN -->> Liberar el BOT\n"
  321. bot_retorno+="$LINE\n"
  322. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  323. --text "$(echo -e $bot_retorno)" \
  324. --parse_mode markdown
  325. return 0
  326. }
  327. info_fun () {
  328. if [[ ! -e "${USRdatabase}" ]]; then
  329. local bot_retorno="$LINE\n"
  330. bot_retorno="No se ha identificado una base de datos con los usuarios\n"
  331. bot_retorno="Los Usuarios a Seguir No contiene Ninguna Informacion\n"
  332. bot_retorno+="$LINE\n"
  333. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  334. --text "$(echo -e $bot_retorno)" \
  335. --parse_mode markdown
  336. else
  337. VPSsec=$(date +%s)
  338. local bot_retorno="$LINE\n"
  339. bot_retorno+="* Cuentas SSH Registradas* \n"
  340. bot_retorno+="$LINE\n"
  341. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  342. --text "$(echo -e $bot_retorno)" \
  343. --parse_mode markdown
  344. for user in $(mostrar_usuarios); do
  345. sen=$(cat ${USRdatabase}|grep -w "$user"|cut -d '|' -f2)
  346. [[ -z $sen ]] && sen="???"
  347. DateExp="$(cat ${USRdatabase}|grep -w "${user}"|cut -d'|' -f3)"
  348. if [[ ! -z $DateExp ]]; then
  349. DataSec=$(date +%s --date="$DateExp")
  350. [[ "$VPSsec" -gt "$DataSec" ]] && EXPTIME="${red}[Exp]" || EXPTIME="${gren}[$(($(($DataSec - $VPSsec)) / 86400))]"
  351. else
  352. EXPTIME="???"
  353. fi
  354. limit=$(cat ${USRdatabase}|grep -w "$user"|cut -d '|' -f4)
  355. [[ -z $limit ]] && limit="???"
  356. bot_retorno="$LINE\n"
  357. bot_retorno+="$(fun_trans "Usuario"): $user\n"
  358. bot_retorno+="$(fun_trans "Contraseña"): $sen\n"
  359. bot_retorno+="$(fun_trans "Dias Restantes"): $EXPTIME\n"
  360. bot_retorno+="$(fun_trans "Limite"): $limit\n"
  361. bot_retorno+="$LINE\n"
  362. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  363. --text "$(echo -e $bot_retorno)" \
  364. --parse_mode markdown
  365. done
  366. fi
  367. return 0
  368. }
  369. online_fun () {
  370. MyTIME="${SCPusr}/time-vps-mx"
  371. [[ -e ${MyTIME} ]] && source ${MyTIME} || touch ${MyTIME}
  372. local bot_retorno="$LINE\n"
  373. bot_retorno+="$* Monitor de Usuarios* \n"
  374. bot_retorno+="$LINE\n"
  375. while read user; do
  376. PID="0+"
  377. [[ $(dpkg --get-selections|grep -w "openssh"|head -1) ]] && PID+="$(ps -u $user|grep sshd|wc -l)+"
  378. [[ $(dpkg --get-selections|grep -w "dropbear"|head -1) ]] && PID+="$(dropbear_pids|grep -w "${user}"|wc -l)+"
  379. [[ $(dpkg --get-selections|grep -w "openvpn"|head -1) ]] && [[ -e /etc/openvpn/openvpn-status.log ]] && [[ $(openvpn_pids|grep -w "$user"|cut -d'|' -f2) ]] && PID+="$(openvpn_pids|grep -w "$user"|cut -d'|' -f2)+"
  380. PID+="0"
  381. [[ $(echo $PID|bc) = 0 ]] && continue
  382. TIMEON="${TIMEUS[$user]}"
  383. [[ -z $TIMEON ]] && TIMEON=0
  384. MIN=$(($TIMEON/60))
  385. SEC=$(($TIMEON-$MIN*60))
  386. HOR=$(($MIN/60))
  387. MIN=$(($MIN-$HOR*60))
  388. HOUR="${HOR}h:${MIN}m:${SEC}s"
  389. [[ -z $(cat ${USRdatabase}|grep -w "${user}") ]] && MAXPID="?" || MAXPID="$(cat ${USRdatabase}|grep -w "${user}"|cut -d'|' -f4)"
  390. TOTALPID="$(echo $PID|bc)/$MAXPID"
  391. local IMPRIME="YES"
  392. local bot_retorno+="$LINE\n"
  393. bot_retorno="$(fun_trans "Usuario"): $user\n"
  394. bot_retorno+="$(fun_trans "Conexiones"): $TOTALPID\n"
  395. bot_retorno+="$(fun_trans "Tiempo Total"): $HOUR\n"
  396. bot_retorno+="$LINE\n"
  397. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  398. --text "$(echo -e $bot_retorno)" \
  399. --parse_mode markdown
  400. done <<< "$(mostrar_usuarios)"
  401. [[ -z $IMPRIME ]] && {
  402. local bot_retorno="$LINE\n"
  403. bot_retorno+="$(fun_trans "No hay usuarios en linea")\n"
  404. bot_retorno+="$LINE\n"
  405. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  406. --text "$(echo -e $bot_retorno)" \
  407. --parse_mode markdown
  408. return 0
  409. }
  410. }
  411. useradd_fun () {
  412. error_fun () {
  413. local bot_retorno="$LINE\n"
  414. bot_retorno+=" -->>> MODO DE USO\n"
  415. bot_retorno+="$LINE\n"
  416. bot_retorno+="agregar Usuario Contraseña Dias Limite\n"
  417. bot_retorno+="Ejemplo:\n"
  418. bot_retorno+='agregar admin admin 30 1\n'
  419. bot_retorno+="$LINE\n"
  420. case $1 in
  421. [1-3]|14)
  422. [[ $1 = 1 ]] && bot_retorno+="$(fun_trans "Usuario Nulo")" && bot_retorno+="$LINE\n"
  423. [[ $1 = 2 ]] && bot_retorno+="$(fun_trans "Usuario Con Nombre Muy Corto")" && bot_retorno+="$LINE\n"
  424. [[ $1 = 3 ]] && bot_retorno+="$(fun_trans "Usuario Con Nombre Muy Grande")" && bot_retorno+="$LINE\n"
  425. [[ $1 = 14 ]] && bot_retorno+="$(fun_trans "Usuario ya Existe")" && bot_retorno+="$LINE\n"
  426. ;;
  427. [4-6])
  428. [[ $1 = 4 ]] && bot_retorno+="$(fun_trans "Contraseña Nula")" && bot_retorno+="$LINE\n"
  429. [[ $1 = 5 ]] && bot_retorno+="$(fun_trans "Contraseña Muy Corta")" && bot_retorno+="$LINE\n"
  430. [[ $1 = 6 ]] && bot_retorno+="$(fun_trans "Contraseña Muy Grande")" && bot_retorno+="$LINE\n"
  431. ;;
  432. [7-9])
  433. [[ $1 = 7 ]] && bot_retorno+="$(fun_trans "Duracion Nula")" && bot_retorno+="$LINE\n"
  434. [[ $1 = 8 ]] && bot_retorno+="$(fun_trans "Duracion invalida utilize numeros")" && bot_retorno+="$LINE\n"
  435. [[ $1 = 9 ]] && bot_retorno+="$(fun_trans "Duracion maxima de un año")" && bot_retorno+="$LINE\n"
  436. ;;
  437. 1[1-3])
  438. [[ $1 = 11 ]] && bot_retorno+="$(fun_trans "Limite Nulo")" && bot_retorno+="$LINE\n"
  439. [[ $1 = 12 ]] && bot_retorno+="$(fun_trans "Limite invalido utilize numeros")" && bot_retorno+="$LINE\n"
  440. [[ $1 = 13 ]] && bot_retorno+="$(fun_trans "Limite maximo de 999")" && bot_retorno+="$LINE\n"
  441. ;;
  442. esac
  443. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  444. --text "$(echo -e $bot_retorno)" \
  445. --parse_mode markdown
  446. }
  447. usuarios_ativos=($(mostrar_usuarios))
  448. [[ -z "$1" ]] && error_fun && return 0
  449. [[ -z "$2" ]] && error_fun && return 0
  450. [[ -z "$3" ]] && error_fun && return 0
  451. [[ -z "$4" ]] && error_fun && return 0
  452. if [[ -z $1 ]]; then
  453. error_fun 1 && return 0
  454. elif [[ "${#1}" -lt "4" ]]; then
  455. error_fun 2 && return 0
  456. elif [[ "${#1}" -gt "24" ]]; then
  457. error_fun 3 && return 0
  458. elif [[ "$(echo ${usuarios_ativos[@]}|grep -w "$1")" ]]; then
  459. error_fun 14 && return 0
  460. fi
  461. if [[ -z $2 ]]; then
  462. error_fun 4 && return 0
  463. elif [[ "${#2}" -lt "6" ]]; then
  464. error_fun 5 && return 0
  465. elif [[ "${#2}" -gt "20" ]]; then
  466. error_fun 6 && return 0
  467. fi
  468. if [[ -z "$3" ]]; then
  469. error_fun 7 && return 0
  470. elif [[ "$3" != +([0-9]) ]]; then
  471. error_fun 8 && return 0
  472. elif [[ "$3" -gt "360" ]]; then
  473. error_fun 9 && return 0
  474. fi
  475. if [[ -z "$4" ]]; then
  476. error_fun 11 && return 0
  477. elif [[ "$4" != +([0-9]) ]]; then
  478. error_fun 12 && return 0
  479. elif [[ "$4" -gt "999" ]]; then
  480. error_fun 13 && return 0
  481. fi
  482. add_user "$1" "$2" "$3" "$4"
  483. if [[ "$?" = "1" ]]; then
  484. local bot_retorno="$LINE\n"
  485. bot_retorno+="$(fun_trans "Usuario No Fue Creado")\n"
  486. bot_retorno+="$LINE\n"
  487. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  488. --text "$(echo -e $bot_retorno)" \
  489. --parse_mode markdown
  490. return 0
  491. else
  492. local bot_retorno="$LINE\n"
  493. bot_retorno+="CUENTA CREADA\n"
  494. bot_retorno+="$LINE\n"
  495. bot_retorno+="Usuario: $1\n"
  496. bot_retorno+="Contraseña: $2\n"
  497. bot_retorno+="Duracion: $3 Dias\n"
  498. bot_retorno+="Limite: $4 Logeo\n"
  499. bot_retorno+="$LINE\n"
  500. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  501. --text "$(echo -e $bot_retorno)" \
  502. --parse_mode markdown
  503. return 0
  504. fi
  505. }
  506. userdell_fun () {
  507. error_fun () {
  508. local bot_retorno="$LINE\n"
  509. bot_retorno+=" -->>> MODO DE USO\n"
  510. bot_retorno+="$LINE\n"
  511. bot_retorno+="eliminar Usuario\n"
  512. bot_retorno+="Ejemplo:\n"
  513. bot_retorno+='eliminar admin\n'
  514. bot_retorno+="$LINE\n"
  515. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  516. --text "$(echo -e $bot_retorno)" \
  517. --parse_mode markdown
  518. return 0
  519. }
  520. [[ -z "$1" ]] && error_fun && return 0
  521. rm_user "$1" && {
  522. local bot_retorno="$LINE\n"
  523. bot_retorno+="$Removido Con Exito\n"
  524. bot_retorno+="$LINE\n"
  525. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  526. --text "$(echo -e $bot_retorno)" \
  527. --parse_mode markdown
  528. return 0
  529. } || {
  530. local bot_retorno="$LINE\n"
  531. bot_retorno+="Usuario No Removido\n"
  532. bot_retorno+="$LINE\n"
  533. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  534. --text "$(echo -e $bot_retorno)" \
  535. --parse_mode markdown
  536. return 0
  537. }
  538. }
  539. paygen_fun () {
  540. gerar_pays () {
  541. echo 'GET http://mhost/ HTTP/1.1[crlf][raw][crlf] [crlf][crlf]
  542. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]
  543. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf] [crlf]
  544. CONNECT [host_port]@mhost HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]
  545. CONNECT [host_port]@mhost HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf] [crlf]
  546. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT [host_port]@mhost [protocol][crlf][crlf]
  547. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT [host_port]@mhost [protocol][crlf] [crlf]
  548. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf][crlf]
  549. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf] [crlf]
  550. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf][crlf]
  551. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]User-Agent: [ua][crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf] [crlf]
  552. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]User-Agent: [ua][crlf][crlf]
  553. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]User-Agent: [ua][crlf] [crlf]
  554. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Referer: mhost[crlf][crlf]
  555. CONNECT mhost@[host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Referer: mhost[crlf] [crlf]
  556. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf][crlf]
  557. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf] [crlf]
  558. GET mhost@[host_port] [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]
  559. GET mhost@[host_port] [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf] [crlf]
  560. GET [host_port]@mhost [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]
  561. GET [host_port]@mhost [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf] [crlf]
  562. CONNECT [host_port]@mhost [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]
  563. CONNECT [host_port]@mhost [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf] [crlf]
  564. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf][raw][crlf][crlf]
  565. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf][raw][crlf] [crlf]
  566. CONNECT [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][crlf]
  567. CONNECT [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf] [crlf]
  568. GET http://mhost/ HTTP/1.1[crlf]User-Agent: [ua][crlf][crlf][split][raw][crlf][crlf]CONNECT mhost:443 HTTP/1.1[crlf][raw][crlf][crlf]GET http://mhost/ HTTP/1.0[crlf]Host: mhost[crlf]Proxy-Authorization: basic: mhost[crlf]User-Agent: [ua][crlf]Connection: close[crlf]Proxy-Connection: Keep-Alive [crlf]Host: [host][crlf][crlf][split][raw][crlf][crlf]GET http://mhost/ HTTP/1.0[crlf]Host: mhost/[crlf][crlf]CONNECT [host_port] HTTP/1.0[crlf][crlf][realData][crlf][crlf]
  569. [method] mhost:443 HTTP/1.1[crlf][raw][crlf][crlf]GET http://mhost/ HTTP/1.1\nHost: mhost\nConnection: close\nConnection: close\nUser-Agent:[ua][crlf]Proxy-Connection: Keep-Alive[crlf]Host: [host][crlf][crlf][delay_split][raw][crlf][crlf][raw][crlf][realData][crlf][crlf]
  570. GET http://mhost/ HTTP/1.1[crlf]User-Agent: KDDI[crlf]Host: [host][crlf][crlf][raw][raw][crlf][raw][crlf][raw][crlf][crlf]DELETE http://mhost/ HTTP/1.1[crlf]Host: m.opera.com[crlf]Proxy-Authorization: basic: *[crlf]User-Agent: KDDI[crlf]Connection: close[crlf]Proxy-Connection: Direct[crlf]Host: [host][crlf][crlf][raw][raw][crlf][crlf][raw][method] http://mhost[port] HTTP/1.1[crlf]Host: [host][crlf][crlf]CONNECT [host] [protocol][crlf][crlf][CONNECT [host] [protocol][crlf][crlf]
  571. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][netData][crlf][instant_split]MOVE http://mhost[delay_split][crlf][crlf][netData][crlf][instant_split]MOVE http://mhost[delay_split][crlf][crlf][netData][crlf][instant_split]MOVE http://mhost[delay_split][crlf][crlf]X-Online-Host: mhost[crlf]Packet Length: Authorization[crlf]Packet Content: Authorization[crlf]Transfer-Encoding: chunked[crlf]Referer: mhost[crlf][crlf]
  572. [crlf][crlf]CONNECT [host_port]@mhost/ [protocol][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]User-Agent: [ua][crlf]CONNECT [host]@mhost/ [protocol][crlf][crlf]
  573. [method] [host_port] [protocol] [delay_split]GET http://mhost/ HTTP/1.1[netData][crlf]GET mip:80[crlf]X-GreenArrow-MtaID: smtp1-1[crlf]CONNECT http://mhost/ HTTP/1.1[crlf]CONNECT http://mhost/ HTTP/1.0[crlf][split]CONNECT http://mhost/ HTTP/1.1[crlf]CONNECT http://mhost/ HTTP/1.1[crlf][crlf][method] [host_port] [protocol]?[split]GET http://mhost:8080/[crlf][crlf]GET [host_port] [protocol]?[split]OPTIONS http://mhost/[crlf]Connection: Keep-Alive[crlf]User-Agent: Mozilla/5.0 (Android; Mobile; rv:35.0) Gecko/35.0 Firefox/35.0[crlf]CONNECT [host_port] [protocol] [crlf]GET [host_port] [protocol]?[split]GET http://mhost/[crlf][crlf][method] mip:80[split]GET mhost/[crlf][crlf]: Cache-Control:no-store,no-cache,must-revalidate,post-check=0,pre-check=0[crlf]Connection:close[crlf]CONNECT [host_port] [protocol]?[split]GET http://mhost:/[crlf][crlf]POST [host_port] [protocol]?[split]GET[crlf]mhost:/[crlf]Content-Length: 999999999\r\n\r\n
  574. GET [host_port] [protocol][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Referer: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][raw][crlf][crlf]
  575. CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]GET mhost/ HTTP/1.1[crlf][crlf]
  576. CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: navegue.vivo.ddivulga.com/pacote[crlf][crlf]CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf]CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf]CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf]CONNECT [host_port] [protocol]GET http://mhost/ [protocol][crlf][split]CONNECT [host_port]@mhost/ [protocol][crlf]Host: mhost/[crlf]GET mhost/ HTTP/1.1[crlf]HEAD mhost/ HTTP/1.1[crlf]TRACE mhost/ HTTP/1.1[crlf]OPTIONS mhost/ HTTP/1.1[crlf]PATCH mhost/ HTTP/1.1[crlf]PROPATCH mhost/ HTTP/1.1[crlf]DELETE mhost/ HTTP/1.1[crlf]PUT mhost/ HTTP/1.1[crlf]Host: mhost/[crlf]Host: mhost/[crlf]X-Forward-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]X-Forwarded-For: mhost[protocol][crlf][crlf]
  577. [raw][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost/[crlf]X-Forward-Host: mhost/[crlf]Connection: Keep-Alive[crlf]Connection: Close[crlf]User-Agent: [ua][crlf][crlf]
  578. [raw][split]GET mhost/ HTTP/1.1[crlf] [crlf]
  579. CONNECT [host_port]@mhost/ [protocol][crlf][instant_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]
  580. GET http://mhost/ HTTP/1.1[crlf]GET mhost/[crlf]Connection: close Keep-Alive[crlf]User-Agent: [ua][crlf][crlf][raw][crlf][crlf]
  581. [raw]split]GET mhost/ HTTP/1.1[crlf][crlf]
  582. GET [host_port] [protocol][instant_split]GET http://mhost/ HTTP/1.1[crlf]
  583. GET [host_port] [protocol][crlf][delay_split]CONNECT http://mhost/ HTTP/1.1[crlf]
  584. CONNECT [host_port] [protocol] [instant_split]GET http://mhost/ HTTP/1.1[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][crlf][instant_split]GET http://mhost/ HTTP/1.1[crlf]User-Agent: [ua][crlf][crlf]
  585. GET http://mhost/ HTTP/2.0[auth][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]CONNECT [host_port] [protocol] [auth][crlf][crlf][delay_split][raw][crlf]JAZZ http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][raw][crlf][crlf][delay_split]CONNECT [host_port] [protocol] [method][crlf] [crlf][crlf]
  586. CONNECT [host_port] [protocol][crlf]GET http://mhost/ HTTP/1.1\rHost: mhost\r[crlf]X-Online-Host: mhost\r[crlf]X-Forward-Host: mhost\rUser-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-gb) AppleWebKit/534.35 (KHTML, like Gecko) Chrome/11.0.696.65 Safari/534.35 Puffin/2.9174AP[crlf]
  587. GET http://mhost/ HTTP/1.1[crlf]Host: mhost/ [crlf]User-Agent: Yes[crlf]Connection: close[crlf]Proxy-Connection: Keep-Alive[crlf][crlf][raw][crlf][crlf]
  588. GET [host_port] [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][raw][crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf]Proxy-connection: Keep-Alive[crlf]Proxy-Authorization: Basic[crlf]UseDNS: Yes[crlf]Cache-Control: no-cache[crlf][raw][crlf] [crlf]
  589. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf] Access-Control-Allow-Credentials: true, true[crlf] Access-Control-Allow-Headers: X-Requested-With,Content-Type, X-Requested-With,Content-Type[crlf] Access-Control-Allow-Methods: GET,PUT,OPTIONS,POST,DELETE, GET,PUT,OPTIONS,POST,DELETE[crlf] Age: 8, 8[crlf] Cache-Control: max-age=86400[crlf] public[crlf] Connection: keep-alive[crlf] Content-Type: text/html; charset=UTF-8[crlf]Content-Length: 9999999999999[crlf]UseDNS: Yes[crlf]Vary: Accept-Encoding[crlf][raw][crlf] [crlf][crlf]
  590. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf] Access-Control-Allow-Credentials: true, true[crlf] Access-Control-Allow-Headers: X-Requested-With,Content-Type, X-Requested-With,Content-Type[crlf] Access-Control-Allow-Methods: GET,PUT,OPTIONS,POST,DELETE, GET,PUT,OPTIONS,POST,DELETE[crlf] Age: 8, 8[crlf] Cache-Control: max-age=86400[crlf] public[crlf] Connection: keep-alive[crlf] Content-Type: text/html; charset=UTF-8[crlf]Content-Length: 9999999999999[crlf]Vary: Accept-Encoding[crlf][raw][crlf] [crlf][crlf]
  591. [netData][split][raw][crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]
  592. GET http://mhost/ HTTP/1.1[crlf]Host: mhost/[crlf]User-Agent: Yes[crlf]Connection: close[crlf]Proxy-Connection: update[crlf][netData][crlf] [crlf][crlf]
  593. GET http://mhost/ HTTP/1.1[crlf]host: http://mhost/[crlf]Connection: close update[crlf]User-Agent: [ua][crlf][crlf][raw][crlf][crlf] [crlf]
  594. [raw][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][raw][crlf][crlf]User-Agent: [ua][crlf]Connection: Close[crlf]Proxy-connection: Close[crlf]Proxy-Authorization: Basic[crlf]Cache-Control: no-cache[crlf]Connection: Keep-Alive[crlf][raw][crlf] [crlf]
  595. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Content-Type: text/html; charset=iso-8859-1[crlf]Connection: close[crlf][crlf]User-Agent: [ua][crlf][crlf]Referer: mhost[crlf]Cookie: mhost[crlf]Proxy-Connection: Keep-Alive [crlf][crlf][raw][crlf] [crlf][crlf]
  596. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Upgrade-Insecure-Requests: 1[crlf]User-Agent: Mozilla/5.0 (Linux; Android 5.1; LG-X220 Build/LMY47I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36[crlf]Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8[crlf]Referer: http://mhost[crlf]Accept-Encoding: gzip, deflate, sdch[crlf]Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.6,en;q=0.4[crlf]Cookie: _ga=GA1.2.2045323091.1494102805; _gid=GA1.2.1482137697.1494102805; tfp=80bcf53934df3482b37b54c954bd53ab; tpctmp=1494102806975; pnahc=0; _parsely_visitor={%22id%22:%22719d5f49-e168-4c56-b7c7-afdce6daef18%22%2C%22session_count%22:1%2C%22last_session_ts%22:1494102810109}; sc_is_visitor_unique=rx10046506.1494105143.4F070B22E5E94FC564C94CB6DE2D8F78.1.1.1.1.1.1.1.1.1[crlf][crlf]Connection: close[crlf]Proxy-Connection: Keep-Alive[crlf][netData][crlf] [crlf][crlf]
  597. GET [host_port] [protocol][crlf][split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][raw][crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf]Proxy-connection: Keep-Alive[crlf]Proxy-Authorization: Basic[crlf]Cache-Control: no-cache[crlf][raw][crlf] [crlf]
  598. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]User-Agent: [ua][crlf]Connection: close [crlf]Referer:http://mhost[crlf]Content-Type: text/html; charset=iso-8859-1[crlf]Content-Length:0[crlf]Accept: text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5[crlf][raw][crlf] [crlf]
  599. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]User-Agent: null[crlf]Connection: close[crlf]Proxy-Connection: x-online-host[crlf][crlf] CONNECT [host_port] [protocol] [netData][crlf]Content-Length: 130 [crlf][crlf]
  600. [raw][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf][crlf]User-Agent: Yes[crlf]Accept-Encoding: gzip,deflate[crlf]Accept-Charset: ISO-8859-1,utf-8;q=0.7,;q=0.7[crlf]Connection: Basic[crlf]Referer: mhost[crlf]Cookie: mhost/ [crlf]Proxy-Connection: Keep-Alive[crlf][crlf][netData][crlf] [crlf][crlf]
  601. [raw][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf]Accept-Language: en-us,en;q=0.5[crlf]Accept-Encoding: gzip,deflate[crlf]Accept-Charset: ISO-8859-1,utf-8;q=0.7,;q=0.7[crlf]Keep-Alive: 115[crlf]Connection: keep-alive[crlf]Referer: mhost[crlf]Cookie: mhost/ Proxy-Connection: Keep-Alive[crlf][crlf][netData][crlf] [crlf][crlf]
  602. [raw][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf]Proxy-connection: Keep-Alive[crlf]Proxy-Authorization: Basic[crlf]Cache-Control: no-cache[crlf][raw][crlf] [crlf]
  603. [raw][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf]Connection: close[crlf][crlf][raw][crlf] [crlf]
  604. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][netData][crlf] [crlf][crlf]CONNECT [host_port][method]HTTP/1.1[crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost[crlf][crlf]DELETE http://mhost/ HTTP/1.1[crlf][crlf][netData][crlf] [crlf][crlf]
  605. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][method] [host_port]@mip [crlf][crlf]http://mhost/ HTTP/1.1[crlf]mip[crlf][crlf] [crlf][crlf]http://mhost/ HTTP/1.1[crlf]Host@mip[crlf][crlf] [crlf][crlf] http://mhost/ HTTP/1.1[crlf]Host mhost/[crlf][crlf][netData][crlf] [crlf][crlf] http://mhost/ HTTP/1.1[crlf] [crlf][crlf][netData][crlf] [crlf][crlf] http://mhost/ HTTP/1.1[cr][crlf] [crlf][crlf][netData][cr][crlf] [crlf][crlf]CONNECT mip:22@http://mhost/ HTTP/1.1[crlf] [crlf][crlf][netData][crlf] [crlf][crlf]
  606. CONNECT [host_port]@mhost/ HTTP/1.1[crlf][crlf]CONNECT http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: close[crlf]User-Agent: [ua][crlf]Proxy-connection: Keep-Alive[crlf]Proxy-Authorization: Basic[crlf]Cache-Control : no-cache[crlf][crlf]
  607. CONNECT [host_port]@mhost/ HTTP/1.0[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: close[crlf]User-Agent: [ua][crlf]Proxy-connection: Keep-Alive[crlf]Proxy-Authorization: Basic[crlf]Cache-Control : no-cache[crlf][crlf]
  608. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13[crlf]Accept-Language: en-us,en;q=0.5[crlf]Accept-Encoding: gzip,deflate[crlf]Accept-Charset: ISO-8859-1,utf-8;q=0.7,;q=0.7[crlf]Keep-Alive: 115[crlf]Connection: keep-alive[crlf]Referer: mhost[crlf]Cookie: mhost/ Proxy-Connection: Keep-Alive [crlf][crlf][netData][crlf] [crlf][crlf]
  609. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]User-Agent: Yes[crlf]Accept-Encoding: gzip,deflate[crlf]Accept-Charset: ISO-8859-1,utf-8;q=0.7,;q=0.7[crlf]Connection: Basic[crlf]Referer: mhost[crlf]Cookie: mhost/ [crlf]Proxy-Connection: Keep-Alive[crlf][crlf][netData][crlf] [crlf][crlf]
  610. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][crlf][delay_split]CONNECT [host_port]@mhost/ [protocol][crlf][crlf]
  611. GET http://mhost/ HTTP/1.1[crlf]DATA: 2048B[crlf]Host: mhost[crlf]User-Agent: Yes[crlf]Connection: close[crlf]Accept-Encoding: gzip[crlf]Non-Buffer: true[crlf]Proxy: false[crlf][crlf][netData][crlf] [crlf][crlf]
  612. GET [host_port] [protocol][crlf][delay_split]CONNECT http://mhost/ HTTP/1.1[crlf]Host: http://mhost/[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: http://mhost[crlf]X-Forwarded-For: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][raw][crlf][crlf]
  613. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Cache-Control=max-age=0[crlf][crlf][raw][crlf] [crlf][crlf]
  614. CONNECT [host_port]@mhost/ [protocol][crlf]X-Online-Host: mhost[crlf][crlf][raw][crlf][crlf]
  615. GET http://mhost/ HTTP/1.1[crlf]Referer: mhost[crlf]GET /HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][raw][crlf][crlf][raw][crlf]Referer: mhost[crlf][crlf]
  616. GET http://mhost/ HTTP/1.1[cr][crlf]Host: mhost/\nUser-Agent: Yes\nConnection: close\nProxy-Connection: Keep-Alive\n\r\n\r\n[netData]\r\n \r\n\r\n
  617. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: close Keep-Alive[crlf]User-Agent: [ua][crlf][crlf][raw][crlf][crlf]
  618. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf][split]CONNECT mhost@[host_port] [protocol][crlf][crlf]
  619. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf][realData][crlf][crlf]
  620. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf][raw][crlf][crlf]
  621. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf][crlf]CONNECT mhost/ [protocol][crlf][crlf]
  622. [raw][crlf]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]CONNECT mhost/ [protocol][crlf]
  623. [raw] HTTP/1.0\r\n\r\nGET http://mhost/ HTTP/1.1\r\nHost: mhost\r\nConnection: Keep-Alive\r\nCONNECT mhost\r\n\r\n
  624. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][raw][crlf][crlf]
  625. GET [host_port]@mhost/ HTTP/1.1[crlf]X-Real-IP:mip[crlf]X-Forwarded-For:http://mhost/ http://mhost/[crlf]X-Forwarded-Port:mhost[crlf]X-Forwarded-Proto:http[crlf]Connection:Keep-Alive[crlf][crlf][instant_split][raw][crlf][crlf]
  626. GET http://mhost/ HTTP/1.1[crlf]Host:mhost[crlf][crlf][split][realData][crlf][crlf]
  627. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf][realData][crlf]CONNECT mhost/ HTTP/1.1[crlf][crlf]
  628. CONNECT [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forward-Host: mhost[crlf]User-Agent: [ua][crlf][raw][crlf][crlf]
  629. [raw][crlf]GET http://mhost/ [protocol][crlf][split]mhost:/ HTTP/1.1[crlf]Host: mhost:[crlf]X-Forward-Host: mhost:[crlf][raw][crlf][crlf]
  630. GET http://mhost/ HTTP/1.1[crlf][crlf]Connection: close[crlf][crlf][netData][crlf] [crlf][crlf]
  631. GET http://mhost/ HTTP/1.1[crlf]Host:http://mhost[crlf][crlf][netData][crlf] [crlf][crlf]
  632. GET http://mhost/ HTTP/1.1\r\nHost: mhost\r\n\r\n[netData]\r\n\r\n\r\n
  633. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][realData][crlf][crlf]
  634. GET http://mhost/ HTTP/1.1\r\nX-Online-Host:mhost\r\n\r\nCONNECT mip:443[crlf]HTTP/1.0\r\n \r\n\\r\n\r\n\\r\n\r\n\\r\n\r\n\\r\n\r\n\\\r\n
  635. GET http://mhost/ HTTP/1.1\r\nGET: mhost\n\r\nCONNECT mip:443[crlf]HTTP/1.0\r\n \r\n\\r\n\r\n\\r\n\r\n\\r\n\r\n\\r\n\r\n\\\r\n
  636. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf]Connection: close[crlf][raw][crlf] [crlf][crlf]
  637. GET http://mhost/[crlf]X-Forward-Host: mhost[crlf][crlf][netData][crlf] [crlf][crlf]
  638. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf]X-Forward-Host: mhost[crlf][crlf][netData][crlf] [crlf][crlf]
  639. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf][crlf]CONNECT mhost/ [protocol][crlf] [crlf][crlf]
  640. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf]mhost[crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]
  641. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf]Forward-Host: mhost[crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]
  642. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf]Connection: http://mhost[crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]
  643. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf]CONNECT mhost@[host_port] [protocol][crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]
  644. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf]Connection: Keep-Alive[crlf]mhost@[host_port][crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]
  645. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf][netdata][crlf] [crlf]GET mhost/ [protocol][crlf]User-Agent: [ua][crlf][raw][crlf][crlf]
  646. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf][crlf]User-Agent: [ua][crlf][raw][crlf][crlf]
  647. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf][split]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]X-Forwarded-For: mhost[crlf][crlf]User-Agent: [ua][crlf]Connection: close[crlf][raw][crlf][crlf]
  648. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf][crlf][raw][crlf][netData][crlf] [crlf][crlf]
  649. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf][raw][crlf] [crlf][crlf]
  650. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]
  651. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf]CONNECT http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]
  652. GET http://mhost/ [method] [host_port] HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf]Connection: close[crlf][netData][crlf] [crlf]
  653. GET http://mhost/ HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]CONNECT mhost@[host_port] [protocol][crlf] [crlf]
  654. GET http://mhost/ HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]CONNECT mhost@[host_port] [protocol][crlf] [crlf]
  655. GET http://mhost/ HTTP/1.1[crlf][crlf]CONNECT http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf]Connection: close[crlf][netdata][crlf] [crlf][split]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf][netData][crlf] [crlf]
  656. GET http://mhost/ HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf][netData][crlf] [crlf]
  657. GET http://mhost/ HTTP/1.1[crlf]mhost\r\nHost:mhost\r\n\r\n[netData]\r\n \r\n\r\n
  658. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf][crlf][realData][crlf][crlf]
  659. GET http://mhost/ HTTP/1.1[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf]HEAD http://mhost/ [protocol][crlf]Host: mhost/ [crlf]CONNECT mhost/ [crlf][crlf]
  660. GET http://mhost/ HTTP/1.1[crlf][crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][netData][crlf] [crlf][crlf]
  661. GET http://mhost/ HTTP/1.1[crlf][crlf]host: mhost[crlf][crlf][realData][crlf] [crlf][crlf]
  662. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost/ [crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf][raw][crlf] [crlf][crlf]
  663. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf]Connection: Keep-Alive[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf][realData][crlf][crlf]
  664. GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf][crlf]CONNECT mhost/ [protocol][crlf] [crlf]
  665. GET http://mhost/ HTTP/1.1[crlf]mhost[crlf]Host: mhost[crlf][crlf]CONNECT mhost/ [crlf][raw][crlf][crlf]
  666. GET http://mhost/ HTTP/1.1[crlf]mhost[crlf]Host: mhost[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf]CONNECT [host_port][crlf]CONNECT mhost/ [crlf][crlf][cr]
  667. [realData][crlf][split]GET http://mhost/ HTTP/1.1[crlf][crlf]Host: mhost[crlf]X-Online-Host: mhost[crlf]Connection: Keep-Alive[crlf][crlf]
  668. GET http://mhost/ HTTP/1.1[crlf]mhost[crlf]Host: mhost[crlf][crlf]CONNECT [host_port][crlf]GET mhost/ [crlf]
  669. CONNECT [host_port]@mhost/ HTTP/1.1[crlf][crlf]GET http://mhost/ [protocol][crlf]Host: mhost[crlf]X-Forward-Host: mhost[crlf][raw][crlf][crlf]
  670. [raw][crlf][cr][crlf]X-Online-Host: mhost[crlf]Connection: [crlf]User-Agent: [ua][crlf]Content-Lenght: 99999999999[crlf][crlf]
  671. [raw][crlf]X-Online-Host: mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][raw][crlf]X-Online-Host: mhost[crlf][crlf]
  672. GET http://mhost/ HTTP/1.1[crlf]Authorization: Basic: Connection: X-Forward-Keep-AliveX-Online-Host: mhost[crlf][crlf][netData][crlf] [crlf][crlf]
  673. GET http://mhost/ HTTP/1.1[crlf]host:frontend.claro.com.br[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf][crlf][netData][crlf] [crlf][crlf]
  674. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][raw][crlf] [crlf][crlf]
  675. GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf][netData][crlf] [crlf][crlf]
  676. GET http://mhost/ HTTP/1.1[crlf]Host: Multibanco.com.br[crlf][crlf][raw][crlf] [crlf][crlf]
  677. GET http://mhost/ HTTP/1.1[crlf]Host: mhost/ [crlf][crlf][raw][crlf]CONNECT [crlf]
  678. GET http://mhost/ HTTP/1.1[crlf] Proxy-Authorization: Basic:Connection: X-Forward-Keep-AliveX-Online-Host:[crlf][crlf][netData][crlf] [crlf][crlf]
  679. CONNECT [host_port]@mhost/ [protocol][crlf][instant_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf]
  680. CONNECT [host_port]@mhost/ [protocol][crlf]Host: mhost[crlf][crlf]
  681. [raw][crlf]X-Online-Host: mhost[crlf][crlf][raw][crlf]X-Online-Host: mhost/ [crlf][crlf]
  682. [raw][crlf]X-Online-Host: http://mhost[crlf][crlf]CONNECT[host_port] [protocol][crlf]X-Online-Host: mhost/ [crlf][crlf]
  683. CONNECT [host_port]@mhost/ HTTP/1.1[crlf]CONNECT mip:443 [crlf][crlf]
  684. CONNECT [host_port]@mhost/ [protocol][crlf]Host: mhost[crlf]X-Forwarded-For: mhost[crlf][crlf][split]GET mhost/ HTTP/1.1[cr][crlf][raw][crlf] [crlf][crlf]
  685. CONNECT [host_port]@mhost/ [protocol][crlf][delay_split]GET http://mhost/ HTTP/1.1[crlf]Host:mhost[crlf][crlf]
  686. CONNECT [host_port]@mhost/ [protocol][crlf][instant_split]GET http://mhost/ HTTP/1.1[crlf]Host: mhost[crlf][crlf]
  687. GET http://mhost/ HTTP/1.1[crlf]Content-Type: text[crlf]Cache-Control: no-cache[crlf]Connection: close[crlf]Content-Lenght: 20624[crlf]GET mip:443@mhost/ HTTP/1.1[crlf][crlf]
  688. CONNECT [host_port]@mhost/ [protocol][crlf]Host: mhost[crlf]X-Forwarded-For: mhost/ User-Agent: Yes[crlf]Connection: close[crlf]Proxy-Connection: Keep-Alive Connection: Transfer-Encoding[crlf] [protocol][crlf]User-Agent: [ua][crlf][raw][auth][crlf][crlf][netData][crlf] [crlf][crlf]
  689. [raw][crlf]Host: mhost[crlf]GET http://mhost/ HTTP/1.1[crlf]X-Online-Host: mhost[crlf][crlf]' > $HOME/$1
  690. }
  691. fail_fun () {
  692. local bot_retorno="$LINE\n"
  693. bot_retorno+=" -->>> MODO DE USO\n"
  694. bot_retorno+="$LINE\n"
  695. bot_retorno+="/gerar $(fun_trans "Host") $(fun_trans "Solicitud") $(fun_trans "Conexion")\n"
  696. bot_retorno+="$(fun_trans "Ejemplo"):\n"
  697. bot_retorno+="/gerar www.host.com (1 a 9) (1 a 3)\n"
  698. bot_retorno+="/gerar www.host.com 2 1\n"
  699. bot_retorno+="$LINE\n"
  700. bot_retorno+="$(fun_trans "Metodos Solicitud")\n${LINE}\n1-GET, 2-CONNECT, 3-PUT, 4-OPTIONS, 5-DELETE, 6-HEAD, 7-TRACE, 8-PROPATCH, 9-PATCH\n"
  701. bot_retorno+="$LINE\n"
  702. bot_retorno+="$(fun_trans "Metodos Conexion")\n${LINE}\n1-REALDATA, 2-NETDATA, 3-RAW\n"
  703. bot_retorno+="$LINE\n"
  704. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  705. --text "$(echo -e $bot_retorno)" \
  706. --parse_mode markdown
  707. unset bot_retorno
  708. return 0
  709. }
  710. valor1="$1" #Entrada Host
  711. valor2="127.0.0.1" #Entrada IP
  712. valor3="$2" #Metodo Requisicao
  713. valor4="$3" #Metodo Conexao
  714. [[ "$1" = "" ]] && fail_fun && return 0
  715. [[ "$2" = "" ]] && fail_fun && return 0
  716. [[ "$3" = "" ]] && fail_fun && return 0
  717. case $valor3 in
  718. 1)req="GET";;
  719. 2)req="CONNECT";;
  720. 3)req="PUT";;
  721. 4)req="OPTIONS";;
  722. 5)req="DELETE";;
  723. 6)req="HEAD";;
  724. 7)req="PATCH";;
  725. 8)req="POST";;
  726. *)req="GET";;
  727. esac
  728. case $valor4 in
  729. 1)in="realData";;
  730. 2)in="netData";;
  731. 3)in="raw";;
  732. *)in="netData";;
  733. esac
  734. gerar_pays Payloads.txt
  735. sed -i "s;realData;abc;g" $HOME/Payloads.txt
  736. sed -i "s;netData;abc;g" $HOME/Payloads.txt
  737. sed -i "s;raw;abc;g" $HOME/Payloads.txt
  738. sed -i "s;abc;$in;g" $HOME/Payloads.txt
  739. sed -i "s;GET;$req;g" $HOME/Payloads.txt
  740. sed -i "s;get;$req;g" $HOME/Payloads.txt
  741. sed -i "s;mhost;$valor1;g" $HOME/Payloads.txt
  742. sed -i "s;mip;$valor2;g" $HOME/Payloads.txt
  743. if [[ -e $HOME/Payloads.txt ]]; then
  744. local bot_retorno="$LINE\n"
  745. bot_retorno+="$(fun_trans "PAYLOADS GERADAS CON EXITO")\n"
  746. bot_retorno+="$LINE\n"
  747. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  748. --text "$(echo -e $bot_retorno)" \
  749. --parse_mode markdown
  750. local bot_retorno2
  751. ShellBot.sendDocument --chat_id ${message_chat_id[$id]} \
  752. --document @$HOME/Payloads.txt
  753. return 0
  754. else
  755. local bot_retorno="$LINE\n"
  756. bot_retorno+="$(fun_trans "PAYLOADS NO GERADAS")\n"
  757. bot_retorno+="$(fun_trans "Algun Error")\n"
  758. bot_retorno+="$LINE\n"
  759. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  760. --text "$(echo -e $bot_retorno)" \
  761. --parse_mode markdown
  762. return 0
  763. fi
  764. }
  765. scan_fun () {
  766. error_fun () {
  767. local bot_retorno="$LINE\n"
  768. bot_retorno+=" -->>> MODO DE USO\n"
  769. bot_retorno+="$LINE\n"
  770. bot_retorno+="Ejemplo: /scan www.host.com\n"
  771. bot_retorno+="$LINE\n"
  772. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  773. --text "$(echo -e $bot_retorno)" \
  774. --parse_mode markdown
  775. return 0
  776. }
  777. [[ -z $1 ]] && error_fun && return 0
  778. local HOST=$1
  779. local RETURN=$(curl -sSL "$HOST"|grep -Eoi '<a [^>]+>'|grep -Eo 'href="[^\"]+"'|grep -Eo '(http|https)://[a-zA-Z0-9./*]+'|sort -u|uniq)
  780. if [[ -z $RETURN ]]; then
  781. local bot_retorno="$LINE\n"
  782. bot_retorno+="$(fun_trans "Ningun Host Encontrado en Dominio"): ${1}\n"
  783. bot_retorno+="$LINE\n"
  784. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  785. --text "$(echo -e $bot_retorno)" \
  786. --parse_mode markdown
  787. return 0
  788. else
  789. i=1
  790. local bot_retorno="$LINE\n"
  791. bot_retorno+="$(fun_trans "SUBDOMINIOS ENCONTRADOS")\n$LINE\n"
  792. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  793. --text "$(echo -e $bot_retorno)" \
  794. --parse_mode markdown
  795. unset bot_retorno
  796. while read hostreturn; do
  797. local bot_retorno+="$hostreturn\n"
  798. if [[ $i -gt 20 ]]; then
  799. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  800. --text "*$(echo -e $bot_retorno)*" \
  801. --parse_mode markdown
  802. unset bot_retorno
  803. unset i
  804. fi
  805. let i++
  806. done <<< "$RETURN"
  807. [[ ! -z $bot_retorno ]] && {
  808. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  809. --text "*$(echo -e $bot_retorno)*" \
  810. --parse_mode markdown
  811. }
  812. fi
  813. }
  814. openadd_fun () {
  815. [[ $(dpkg --get-selections|grep -w "openvpn"|head -1) ]] || return 0
  816. [[ -e /etc/openvpn/openvpn-status.log ]] || return 0
  817. newclient "$nomeuser" "$senhauser"
  818. [[ -z $1 ]] && client="adm" || client="$1"
  819. cp /etc/openvpn/client-common.txt $HOME/$client.ovpn
  820. echo "<key>
  821. $(cat /etc/openvpn/client-key.pem)
  822. </key>
  823. <cert>
  824. $(cat /etc/openvpn/client-cert.pem)
  825. </cert>
  826. <ca>
  827. $(cat /etc/openvpn/ca.pem)
  828. </ca>" >> $HOME/$client.ovpn
  829. [[ ! -z $1 ]] && [[ ! -z $2 ]] && sed -i "s;auth-user-pass;<auth-user-pass>\n$1\n$2\n</auth-user-pass>;g" $HOME/$client.ovpn
  830. local bot_retorno="$LINE\n"
  831. bot_retorno+="$(fun_trans "Para Generar Archivos Con Autenticación Automatica Utilice"):\n/openadd usuario senha\n$LINE\n"
  832. bot_retorno+="$(fun_trans "ARCHIVO OPENVPN GENERADO CON EXITO")\n"
  833. bot_retorno+="$LINE\n"
  834. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  835. --text "$(echo -e $bot_retorno)" \
  836. --parse_mode markdown
  837. local bot_retorno2
  838. ShellBot.sendDocument --chat_id ${message_chat_id[$id]} \
  839. --document @$HOME/$client.ovpn
  840. rm $HOME/$client.ovpn
  841. return 0
  842. }
  843. cript_fun () {
  844. if [[ -z $2 ]]; then
  845. local bot_retorno="$LINE\n"
  846. bot_retorno+="$(fun_trans "Modo de uso"):\n"
  847. bot_retorno+="/criptar texto_for_cript\n"
  848. bot_retorno+="$LINE\n"
  849. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  850. --text "_$(echo -e $bot_retorno)_" \
  851. --parse_mode markdown
  852. return 0
  853. else
  854. local array=($@)
  855. for((i=1; i<=${#array[@]}; i++)); do
  856. unset txtofus
  857. local number=$(expr length "${array[$i]}")
  858. for((e=1; e<$number+1; e++)); do
  859. local txt[$e]=$(echo "${array[$i]}" | cut -b $e)
  860. case ${txt[$e]} in
  861. ".")txt[$e]="#";;
  862. "#")txt[$e]=".";;
  863. "1")txt[$e]="%";;
  864. "%")txt[$e]="1";;
  865. "2")txt[$e]="?";;
  866. "?")txt[$e]="2";;
  867. "3")txt[$e]="&";;
  868. "&")txt[$e]="3";;
  869. "/")txt[$e]="!";;
  870. "!")txt[$e]="/";;
  871. "a")txt[$e]="k";;
  872. "k")txt[$e]="a";;
  873. "s")txt[$e]="w";;
  874. "w")txt[$e]="s";;
  875. "h")txt[$e]="y";;
  876. "y")txt[$e]="h";;
  877. "o")txt[$e]="P";;
  878. "P")txt[$e]="o";;
  879. "v")txt[$e]="T";;
  880. "T")txt[$e]="v";;
  881. "f")txt[$e]="Z";;
  882. "Z")txt[$e]="f";;
  883. esac
  884. txtofus+="${txt[$e]}"
  885. done
  886. [[ -z $returntxt ]] && returntxt="$(echo $txtofus | rev)" || returntxt="$returntxt $(echo $txtofus | rev)"
  887. done
  888. unset txtofus
  889. local bot_retorno="$LINE\n"
  890. bot_retorno+="$(fun_trans "SU TEXTO ENCRIPTADO O DESCRIPTADO"):\n"
  891. bot_retorno+="$LINE\n"
  892. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  893. --text "*$(echo -e $bot_retorno)*" \
  894. --parse_mode markdown
  895. local bot_retorno="$returntxt\n"
  896. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  897. --text "_$(echo -e $bot_retorno)_" \
  898. --parse_mode markdown
  899. fi
  900. }
  901. language_fun () {
  902. if [[ -z $2 || -z $3 ]]; then
  903. local bot_retorno="$LINE\n"
  904. bot_retorno+=" -->>> MODO DE USO\n"
  905. bot_retorno+="$LINE\n"
  906. bot_retorno+="/lang (pt, fr, es, en...) (text)\n"
  907. bot_retorno+="/lang es Hello\n"
  908. bot_retorno+="$LINE\n"
  909. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  910. --text "_$(echo -e $bot_retorno)_" \
  911. --parse_mode markdown
  912. return 0
  913. else
  914. local array=($@)
  915. local RETORNO
  916. for((i=2; i<=${#array[@]}; i++)); do
  917. local RET=$(source trans -b :$2 "${array[$i]}")
  918. [[ -z $RETORNO ]] && RETORNO=$RET || RETORNO="$RETORNO $RET"
  919. done
  920. local bot_retorno="$LINE\n"
  921. bot_retorno+="* Su Traduccion: *\n"
  922. bot_retorno+="$LINE\n"
  923. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  924. --text "*$(echo -e $bot_retorno)*" \
  925. --parse_mode markdown
  926. bot_retorno="$(echo $RETORNO|sed -e 's/[^a-z0-9 -]//ig')\n"
  927. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  928. --text "_$(echo -e $bot_retorno)_" \
  929. --parse_mode markdown
  930. return 0
  931. fi
  932. }
  933. teste_fun () {
  934. local bot_retorno="$LINE\n"
  935. bot_retorno+="$(fun_trans "USUARIO"): ${chatuser}\n"
  936. bot_retorno+="$(fun_trans "ARGUMENTOS"): ${comando[@]}\n"
  937. bot_retorno+="$LINE\n"
  938. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  939. --text "_$(echo -e $bot_retorno)_" \
  940. --parse_mode markdown
  941. #local bot_retorno="$LINE\n"
  942. # bot_retorno+="$(fun_trans "ESSE USUARIO"): ${chatuser}\n"
  943. # bot_retorno+="$(fun_trans "ESSES ARGUMENTOS"): ${comando[@]}\n"
  944. # bot_retorno+="$LINE\n"
  945. # ShellBot.editMessageText --chat_id ${message_chat_id[$id]} --message_id ${reply_to_message_message_id[$id]} --text "$(echo -e $bot_retorno)" --parse_mode markdown
  946. #return 0
  947. }
  948. ## RENOVAR USUSARIO
  949. renew_user_fun () {
  950. #nome dias
  951. fail_fun () {
  952. local bot_retorno="*$LINE*\n"
  953. bot_retorno+=" -->>> MODO DE USO\n"
  954. bot_retorno+="*$LINE*\n"
  955. bot_retorno+="/renovar usuario dias\n"
  956. bot_retorno+="_Ejemplo:_\n"
  957. bot_retorno+="/renovar CARLOS 30\n"
  958. bot_retorno+="*$LINE*\n"
  959. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  960. --text "$(echo -e $bot_retorno)" \
  961. --parse_mode markdown
  962. unset bot_retorno
  963. return 0
  964. }
  965. [[ "$1" = "" ]] && fail_fun && return 0
  966. [[ "$2" = "" ]] && fail_fun && return 0
  967. error_fun () {
  968. local bot_retorno="*$LINE*\n"
  969. bot_retorno+="*❗️ USUARIO NO REGISTRADO ❗️*\n"
  970. bot_retorno+="*$LINE*\n"
  971. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  972. --text "$(echo -e $bot_retorno)" \
  973. --parse_mode markdown
  974. return 0
  975. }
  976. [[ -z $1 ]] && error_fun && return 0
  977. cup1="$1"
  978. userva="$(cat /etc/VPS-MX/VPS-MXuser|grep -w "$cup1"|cut -d'|' -f1)"
  979. [[ -z $userva ]] && error_fun && return 0
  980. datexp=$(date "+%F" -d " + $2 days") && valid=$(date '+%C%y-%m-%d' -d " + $2 days")
  981. chage -E $valid $1 2> /dev/null || return 1
  982. [[ -e ${USRdatabase} ]] && {
  983. newbase=$(cat ${USRdatabase}|grep -w -v "$1")
  984. useredit=$(cat ${USRdatabase}|grep -w "$1")
  985. pass=$(echo $useredit|cut -d'|' -f2)
  986. limit=$(echo $useredit|cut -d'|' -f4)
  987. echo "$1|$pass|${datexp}|$limit" > ${USRdatabase}
  988. for value in `echo ${newbase}`; do
  989. echo $value >> ${USRdatabase}
  990. done
  991. }
  992. NOM=`less /etc/VPS-MX/controlador/nombre.log` > /dev/null 2>&1
  993. NOM1=`echo $NOM` > /dev/null 2>&1
  994. IP="$(cat /etc/VPS-MX/MEUIPvps)"
  995. local bot_retorno="*$LINE*\n"
  996. bot_retorno+="*CUENTA RENOVADA* \n"
  997. bot_retorno+="*$LINE*\n"
  998. bot_retorno+="▪️ _Usuario:_ *$1* \n"
  999. bot_retorno+="▪️ _Dias Agregados:_ *$2* \n"
  1000. bot_retorno+="🕰 _Ahora expira:_\n👉 *$datexp* \n"
  1001. bot_retorno+="*$LINE*\n"
  1002. bot_retorno+="▪️ _VPS: _ *$NOM1* \n"
  1003. bot_retorno+="▪️ _IP:_ *$IP* \n"
  1004. bot_retorno+="*$LINE*\n"
  1005. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1006. --text "$(echo -e $bot_retorno)" \
  1007. --parse_mode markdown
  1008. }
  1009. #INFO SSH
  1010. info_sshp () {
  1011. error_fun () {
  1012. local bot_retorno="*$LINE*\n"
  1013. bot_retorno+="*MODO DE USO:*\n"
  1014. bot_retorno+="*$LINE*\n"
  1015. bot_retorno+="Pon el Comando /SSHI (INGRESA NOMBRE DE USUARIO) \n"
  1016. bot_retorno+="*$LINE*\n"
  1017. bot_retorno+="_Ejemplo: /SSHI NetVPS-xzcmo _\n"
  1018. bot_retorno+="*$LINE*\n"
  1019. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1020. --text "$(echo -e $bot_retorno)" \
  1021. --parse_mode markdown
  1022. return 0
  1023. }
  1024. [[ -z $1 ]] && error_fun && return 0
  1025. VPSsec=$(date +%s)
  1026. sen=$(cat /etc/VPS-MX/VPS-MXuser|grep -w "$1"|cut -d '|' -f2)
  1027. [[ -z $sen ]] && sen="???"
  1028. DateExp="$(cat /etc/VPS-MX/VPS-MXuser|grep -w "$1"|cut -d'|' -f3)"
  1029. if [[ ! -z $DateExp ]]; then
  1030. DataSec=$(date +%s --date="$DateExp")
  1031. [[ "$VPSsec" -gt "$DataSec" ]] && EXPTIME="${red}[EXPIRADA]" || EXPTIME="${gren}[$(($(($DataSec - $VPSsec)) / 86400))]"
  1032. else
  1033. EXPTIME="???"
  1034. fi
  1035. limit=$(cat /etc/VPS-MX/VPS-MXuser|grep -w "$1"|cut -d '|' -f4)
  1036. [[ -z $limit ]] && limit="???"
  1037. local bot_retorno="*$LINE*\n"
  1038. bot_retorno+="*📝 INFO GENERAL SSH 📝*\n"
  1039. bot_retorno+="*$LINE*\n"
  1040. bot_retorno+="▪️ Usuario: *$1 *\n"
  1041. #bot_retorno+="$(fun_trans "Contraseña"): $sen\n"
  1042. bot_retorno+="▪️ Dias Restantes: *$EXPTIME *\n"
  1043. bot_retorno+="▪️ Limite de Usuarios: *$limit *\n"
  1044. bot_retorno+="*$LINE*\n"
  1045. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1046. --text "$(echo -e $bot_retorno)" \
  1047. --parse_mode markdown
  1048. return 0
  1049. }
  1050. ## PID DROPBEAR
  1051. droppids () {
  1052. local pids
  1053. local port_dropbear=`ps aux | grep dropbear | awk NR==1 | awk '{print $17;}'`
  1054. cat /var/log/auth.log|grep "$(date|cut -d' ' -f2,3)" > /var/log/authday.log
  1055. #cat /var/log/auth.log|tail -1000 > /var/log/authday.log
  1056. local log=/var/log/authday.log
  1057. local loginsukses='Password auth succeeded'
  1058. [[ -z $port_dropbear ]] && return 1
  1059. for port in `echo $port_dropbear`; do
  1060. for pidx in $(ps ax |grep dropbear |grep "$port" |awk -F" " '{print $1}'); do
  1061. pids="${pids}$pidx\n"
  1062. done
  1063. done
  1064. for pid in `echo -e "$pids"`; do
  1065. pidlogs=`grep $pid $log |grep "$loginsukses" |awk -F" " '{print $3}'`
  1066. i=0
  1067. for pidend in $pidlogs; do
  1068. let i++
  1069. done
  1070. if [[ $pidend ]]; then
  1071. login=$(grep $pid $log |grep "$pidend" |grep "$loginsukses")
  1072. PID=$pid
  1073. user=`echo $login |awk -F" " '{print $10}' | sed -r "s/'//g"`
  1074. waktu=$(echo $login |awk -F" " '{print $2"-"$1,$3}')
  1075. [[ -z $user ]] && continue
  1076. echo "$user|$PID|$waktu"
  1077. fi
  1078. done
  1079. }
  1080. ## B/U USER
  1081. blo_unb_fun () {
  1082. error_fun () {
  1083. local bot_retorno="*$LINE*\n"
  1084. bot_retorno+="*MODO DE USO:*\n"
  1085. bot_retorno+="*$LINE*\n"
  1086. bot_retorno+="Pon el Comando /bloquear (INGRESA NOMBRE DE USUARIO) \n"
  1087. bot_retorno+="\t---- O ----- \n"
  1088. bot_retorno+="Pon el Comando /desbloquear (INGRESA NOMBRE DE USUARIO) \n"
  1089. bot_retorno+="*$LINE*\n"
  1090. bot_retorno+="_Ejemplo: bloquear Ale2020 _\n"
  1091. bot_retorno+="_Ejemplo: desbloquear Ale2020 _\n"
  1092. bot_retorno+="*$LINE*\n"
  1093. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1094. --text "$(echo -e $bot_retorno)" \
  1095. --parse_mode markdown
  1096. return 0
  1097. }
  1098. [[ -z $1 ]] && error_fun && return 0
  1099. local USRloked="/etc/VPS-MX/VPS-MX-userlock"
  1100. local LIMITERLOG="${USRdatabase}/Limiter.log"
  1101. local LIMITERLOG2="${USRdatabase}/Limiter2.log"
  1102. if [[ $2 = "-loked" ]]; then
  1103. [[ $(cat ${USRloked}|grep -w "$1") ]] && return 1
  1104. echo " $1 (BLOCK-MULTILOGIN) $(date +%r--%d/%m/%y)"
  1105. limseg="$(less /etc/VPS-MX/controlador/tiemdes.log)"
  1106. KEY="862633455:AAGJ9BBJanzV6yYwLSemNAZAVwn7EyjrtcY"
  1107. URL="https://api.telegram.org/bot$KEY/sendMessage"
  1108. MSG="⚠️ AVISO DE VPS: $NOM1 ⚠️
  1109. 🔹 CUENTA: $1
  1110. ❗️📵 BLOCK FIJO/TEMPORAL 📵❗️
  1111. 🔓( AUTOUNLOCK EN $limseg SEGUNDOS) 🔓"
  1112. curl -s --max-time 10 -d "chat_id=$IDB1&disable_web_page_preview=1&text=$MSG" $URL &>/dev/null
  1113. pkill -u $1 &>/dev/null
  1114. fi
  1115. if [[ $(cat ${USRloked}|grep -w "$1") ]]; then
  1116. usermod -U "$1" &>/dev/null
  1117. local bot_retorno="*$LINE*\n"
  1118. bot_retorno+="*⭕️ UNLOCK USUARIO ⭕️*\n"
  1119. bot_retorno+="*$LINE*\n"
  1120. bot_retorno+="▪️ _Usuario:_ *$1 * _Desbloqueado_\n"
  1121. bot_retorno+="*$LINE*\n"
  1122. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1123. --text "$(echo -e $bot_retorno)" \
  1124. --parse_mode markdown
  1125. [[ -e ${USRloked} ]] && {
  1126. newbase=$(cat ${USRloked}|grep -w -v "$1")
  1127. [[ -e ${USRloked} ]] && rm ${USRloked}
  1128. for value in `echo ${newbase}`; do
  1129. echo $value >> ${USRloked}
  1130. done
  1131. }
  1132. [[ -e ${LIMITERLOG} ]] && [[ $(cat ${LIMITERLOG}|grep -w "$1") ]] && {
  1133. newbase=$(cat ${LIMITERLOG}|grep -w -v "$1")
  1134. [[ -e ${LIMITERLOG} ]] && rm ${LIMITERLOG}
  1135. for value in `echo ${newbase}`; do
  1136. echo $value >> ${LIMITERLOG}
  1137. echo $value >> ${LIMITERLOG}
  1138. done
  1139. }
  1140. return 1
  1141. else
  1142. usermod -L "$1" &>/dev/null
  1143. pkill -u $1 &>/dev/null
  1144. droplim=`droppids|grep -w "$1"|cut -d'|' -f2`
  1145. kill -9 $droplim &>/dev/null
  1146. echo $1 >> ${USRloked}
  1147. local bot_retorno="*$LINE*\n"
  1148. bot_retorno+="*❌ BLOCK USUARIO ❌*\n"
  1149. bot_retorno+="*$LINE*\n"
  1150. bot_retorno+="▪️ _Usuario:_ *$1 * _Bloqueado_\n"
  1151. bot_retorno+="*$LINE*\n"
  1152. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1153. --text "$(echo -e $bot_retorno)" \
  1154. --parse_mode markdown
  1155. #notifi &>/dev/null
  1156. return 0
  1157. fi
  1158. }
  1159. ###LECTURA DE USER BLOC
  1160. userblock_lee () {
  1161. local HOST="/etc/VPS-MX/VPS-MX-userlock"
  1162. local RETURN=$(cat $HOST)
  1163. if [[ -z $RETURN ]]; then
  1164. local bot_retorno="$LINE\n"
  1165. bot_retorno+="NINGUN USUARIO BLOQUEADO\n"
  1166. bot_retorno+="$LINE\n"
  1167. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1168. --text "$(echo -e $bot_retorno)" \
  1169. --parse_mode markdown
  1170. return 0
  1171. else
  1172. i=1
  1173. local bot_retorno="*$LINE*\n"
  1174. bot_retorno+="* ❌ USUARIOS BLOQUEADOS ❌*\n$LINE\n"
  1175. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1176. --text "$(echo -e $bot_retorno)" \
  1177. --parse_mode markdown
  1178. unset bot_retorno
  1179. while read hostreturn; do
  1180. local bot_retorno+="$hostreturn\n"
  1181. if [[ $i -gt 25 ]]; then
  1182. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1183. --text "*$(echo -e $bot_retorno)*" \
  1184. --parse_mode markdown
  1185. unset bot_retorno
  1186. unset i
  1187. fi
  1188. let i++
  1189. done <<< "$RETURN"
  1190. [[ ! -z $bot_retorno ]] && {
  1191. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1192. --text "*$(echo -e $bot_retorno)*" \
  1193. --parse_mode markdown
  1194. }
  1195. fi
  1196. local bot_retorno="*$LINE*\n"
  1197. bot_retorno+="ESTOS SON USUARIOS CON BAN\n"
  1198. bot_retorno+="*$LINE*\n"
  1199. ShellBot.sendMessage --chat_id ${message_chat_id[$id]} \
  1200. --text "*$(echo -e $bot_retorno)*" \
  1201. --parse_mode markdown
  1202. return 0
  1203. }
  1204. # LOOP ESCUTANDO O TELEGRAN
  1205. while true; do
  1206. ShellBot.getUpdates --limit 100 --offset $(ShellBot.OffsetNext) --timeout 30
  1207. for id in $(ShellBot.ListUpdates); do
  1208. chatuser="$(echo ${message_chat_id[$id]}|cut -d'-' -f2)"
  1209. echo $chatuser >&2
  1210. comando=(${message_text[$id]})
  1211. case ${comando[0]} in
  1212. /[Tt]este|[Tt]este)teste_fun &;;
  1213. /[Aa]juda|[Aa]juda|[Hh]elp|/[Hh]elp)ajuda_fun &;;
  1214. /[Ss]tart|[Ss]tart|[Cc]omecar|/[Cc]omecar)ajuda_fun &;;
  1215. /[Ss]SHI|[Ss]SHI)info_sshp "${comando[1]}" &;;
  1216. /[Aa]DMIN|[Aa]DMIN)ativarid_fun "${comando[1]}" "${comando[2]}" "$chatuser";;
  1217. *)if [[ ! -z $LIBERADOS ]] && [[ $(echo ${LIBERADOS}|grep -w "${chatuser}") ]]; then
  1218. case ${comando[0]} in
  1219. ##PANEL SSH
  1220. [Oo]nline|/[Oo]nline|[Oo]nlines|/[Oo]nlines)online_fun &;;
  1221. [Cc]riptar|/[Cc]riptar|[Cc]ript|/[Cc]ript)cript_fun "${comando[@]}" &;;
  1222. [Aa]gregar|/[Aa]gregar)useradd_fun "${comando[1]}" "${comando[2]}" "${comando[3]}" "${comando[4]}" &;;
  1223. [Ee]liminar|/[Ee]liminar)userdell_fun "${comando[1]}" &;;
  1224. [Rr]enovar|/[Rr]enovar)renew_user_fun "${comando[1]}" "${comando[2]}" &;;
  1225. [Bb]loquear|/[Bb]loquear)blo_unb_fun "${comando[1]}" &;;
  1226. [Dd]esbloquear|/[Dd]esbloquear)blo_unb_fun "${comando[1]}" &;;
  1227. [Vv]erbloqueados|/[Vv]erbloqueados)userblock_lee &;;
  1228. ##HERRAMIENTAS
  1229. [Aa]dmins|/[Aa]dmins)loguin_fun &;;
  1230. [Ii]nfovps|/[Ii]nfovps)infovps &;;
  1231. [Ll]ang|/[Ll]ang)language_fun "${comando[@]}" &;;
  1232. [Oo]penadd|/[Oo]penadd|[Oo]pen|/[Oo]pen)openadd_fun "${comando[1]}" "${comando[2]}" &;;
  1233. [Gg]erar|/[Gg]erar|[Pp]ay|/[Pp]ay)paygen_fun "${comando[1]}" "${comando[2]}" "${comando[3]}" &;;
  1234. [Uu]suarios|/[Uu]suarios|[Uu]ser|/[Uu]ser)info_fun &;;
  1235. [Ss]can|/[Ss]can)scan_fun "${comando[1]}" &;;
  1236. *)ajuda_fun;;
  1237. esac
  1238. else
  1239. [[ ! -z "${comando[0]}" ]] && blockfun &
  1240. fi;;
  1241. esac
  1242. done
  1243. done