This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// clear-spam.php | |
class ClearSpam | |
{ | |
private $argv; | |
private $log_path; | |
private $tmp_path; | |
private $addrs; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fuente: https://hackerdev.net/viewtopic.php?f=19&t=8&p=8 | |
echo '+ Validando versiΓ³n actual ...'; | |
LOCAL_VERSION=$(ssh hackerdev.net@hackerdev.net ' | |
mysql hackerdev -e " | |
SELECT config_value | |
FROM phpbb_config | |
WHERE config_name = 0x76657273696f6e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/WHK102/wss | |
1099 Hosts encontrados | |
βββ 0.0.0.0 | |
β βββ stagecafrstore.starbucks.com | |
β βββ stagededestore.starbucks.com | |
β βββ stagefrfrstore.starbucks.com | |
β βββ stageukenstore.starbucks.com | |
βββ 104.104.33.177 | |
β βββ globalassets.starbucks.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Name=Firefox Web Browser (work) | |
Name[es]=Navegador web Firefox (work) | |
Comment=Browse the World Wide Web (work) | |
Comment[es]=Navegue por la web (work) | |
GenericName=Web Browser (work) | |
GenericName[es]=Navegador web (work) | |
Keywords=Internet;WWW;Browser;Web;Explorer | |
Keywords[es]=Explorador;Internet;WWW |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"application": { | |
"name": "Firefox", | |
"osVersion": "Linux 5.15.0-47-generic #51-Ubuntu SMP Thu Aug 11 07:51:15 UTC 2022", | |
"version": "104.0.2", | |
"buildID": "20220905124721", | |
"distributionID": "canonical-002", | |
"userAgent": "Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0", | |
"safeMode": false, | |
"memorySizeBytes": 134998409216, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p /home/ubuntu/.ssh/; | |
echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDB6vyJZZYawVFHzydvZvqrxmlOYnwNpNvYquI8r9+4Z+7MinaBGIMK2G2GQdQ1JDQl0IaUeT9xxXxlcjzXDJMKITyzfIeogBy6ocsROG15eNN5uPeW7OZno9P4bYE1W40mtxxaqu8WrbDI4FOomZufhcKpa30u5O/sG2j1K/pprT2k4PCptSiJPR6ZP/+IDCfm2g8jk1Waya2K5y2et6VciRJnFlbNlFM0Qgl8mS1rj7U9YrVNXrEG0s0QVB3yal7QWu4Q/xhHZm+T5z00EseSu/Yity7HBHaWc2krgMiW/yVuvEz2Q8Xs5bMRDOKf84Ss51nailqYtQYhx1HAS8w5' >> /home/ubuntu/.ssh/authorized_keys; | |
chmod 600 /home/ubuntu/.ssh/authorized_keys; | |
chown -R ubuntu:ubuntu /home/ubuntu/.ssh; | |
mkdir -p /root/.ssh/; | |
echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDB6vyJZZYawVFHzydvZvqrxmlOYnwNpNvYquI8r9+4Z+7MinaBGIMK2G2GQdQ1JDQl0IaUeT9xxXxlcjzXDJMKITyzfIeogBy6ocsROG15eNN5uPeW7OZno9P4bYE1W40mtxxaqu8WrbDI4FOomZufhcKpa30u5O/sG2j1K/pprT2k4PCptSiJPR6ZP/+IDCfm2g8jk1Waya2K5y2et6VciRJnFlbNlFM0Qgl8mS1rj7U9YrVNXrEG0s0QVB3yal7QWu4Q/xhHZm+T5z00EseSu/Yity7HBHaWc2krgMiW/yVuvEz2Q8Xs5bMRDOKf84Ss51nailqYtQYhx1HAS8w5' >> /root/.ssh/authorized_keys; | |
chmod 600 /root/.ssh/authorized_keys; | |
ch |