-
Posts
2181 -
Joined
-
Last visited
-
Days Won
6 -
Feedback
100%
Everything posted by John Cena
-
Whatever you prefer, but personally you should use task based system.
-
If that's the case they need to update the forums which could then break the SDN.
-
Sally's Proxy Store - As low as $0.83 / month each - SOCKS
John Cena replied to Taco Bell's topic in Other & Membership Codes
Yo I want free proxy please. UK Prefer but EU ok -
Planning on venturing out of the basement. Wish me luck!
-
None of my accounts banned. Suck on that Jagex!
-
There isn't even a point in playing legit to earn GP.
-
0.53 [☆1000 Feedback☆] [LIFETIME SPONSOR]?️EATING COMPETITORS[BULK]
John Cena replied to TWC's topic in Runescape 2007
Sold him 500M for LTC. -
Gold & Proxies
-
I'm UKBT. live:donaldtrumposrs is my Skype
-
Honestly you think Jagex gives less ban rate if you use Mirror? If they knew even remotely it wasn't a legit rs client they would ban you right?
-
Are these threads always proxy seller infested?
-
Dennis The Menace
-
Eww mcdonalds
-
Script Tester [ Progress Reports ] UPDATED OFTEN
John Cena replied to firstmate's topic in Spam/Off Topic
That's cool. Stick it to Jagex's face lol -
He said he don't trust them so if It is encrypted then yes. If they're trusted enough then I guess It's acceptable to encrypt the code?
-
If It turns out the entire thing looks encrypted then probably something dodgy going on.
-
Ye that's nice, quashing only works on established accounts. Has anyone quashed a relatively new account?
-
Finally some motivation to sort the bank out.
-
Not really, if you used Windows it'll be a better user experience but Linux is free and uses less computer resources. If you're using Kimsufi I know a template you can use for Windows 10 but you'll need to get a license for it within a few days. It apparently works for online.net and soyoustart but haven't tried it successfully yet. The config doesn't use -localhost, means most of the time you'll be bruteforced. Btw VNC is probably one of the most common ways of hacking a Linux server. Secondly It doesn't install fail2ban which also alllows the attacker to bruteforce SSH which is very common, so if you have a shitty password expect it to be bruteforced eventually. Thirdly the repo for that installer no longer works so you'll need to use: cd /var/lib/dpkg/info sudo sed -i 's|JAVA_VERSION=8u151|JAVA_VERSION=8u162|' oracle-java8-installer.* sudo sed -i 's|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1/|' oracle-java8-installer.* sudo sed -i 's|SHA256SUM_TGZ="c78200ce409367b296ec39be4427f020e2c585470c4eed01021feada576f027f"|SHA256SUM_TGZ="68ec82d47fd9c2b8eb84225b6db398a72008285fafc98631b1ff8d2229680257"|' oracle-java8-installer.* sudo sed -i 's|J_DIR=jdk1.8.0_151|J_DIR=jdk1.8.0_162|' oracle-java8-installer.* apt-get update && apt get upgrade -y apt-get install oracle-java8-installer -y If you CBA to use ^ then you can use my own install script that I use: #!/bin/sh adduser user apt-get update && apt-get upgrade -y && apt-get install nano software-properties-common python-software-properties fail2ban nano xfce4 xfce4-goodies tightvncserver firefox htop nload -y sleep 1s myuser="user" sleep 1s mypasswd=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w8 | head -n1) sleep 1s mkdir /home/$myuser/.vnc sleep 1s echo $mypasswd | vncpasswd -f > /home/$myuser/.vnc/passwd sleep 1s chown -R $myuser:$myuser /home/$myuser/.vnc sleep 1s chmod 0600 /home/$myuser/.vnc/passwd sleep 1s echo "VNC Pass: $mypasswd" >> ~/vncpasswd sleep 1s su - user -c "vncserver -kill :1" su - user -c "mv ~/.vnc/xstartup ~/.vnc/xstartup.bak" su - user -c "echo '#!/bin/bash' >> ~/.vnc/xstartup" su - user -c "echo 'xrdb ~/.Xresources' >> ~/.vnc/xstartup" su - user -c "echo 'startxfce4 &' >> ~/.vnc/xstartup" su - user -c "chmod +x ~/.vnc/xstartup" su - user -c "vncserver" echo "[Unit]" >> /etc/systemd/system/vncserver@1.service echo "Description=Start TightVNC server at startup" >> /etc/systemd/system/vncserver@1.service echo "After=syslog.target network.target" >> /etc/systemd/system/vncserver@1.service echo "" >> /etc/systemd/system/vncserver@1.service echo "[Service]" >> /etc/systemd/system/vncserver@1.service echo "Type=forking" >> /etc/systemd/system/vncserver@1.service echo "User=user" >> /etc/systemd/system/vncserver@1.service echo "PAMName=login" >> /etc/systemd/system/vncserver@1.service echo "PIDFile=/home/user/.vnc/%H:%i.pid" >> /etc/systemd/system/vncserver@1.service echo "ExecStartPre=-/usr/bin/vncserver -kill :%i > /dev/null 2>&1" >> /etc/systemd/system/vncserver@1.service echo "ExecStart=/usr/bin/vncserver -depth 24 -geometry 1280x800 -localhost :%i" >> /etc/systemd/system/vncserver@1.service echo "ExecStop=/usr/bin/vncserver -kill :%i" >> /etc/systemd/system/vncserver@1.service echo "" >> /etc/systemd/system/vncserver@1.service echo "[Install]" >> /etc/systemd/system/vncserver@1.service echo "WantedBy=multi-user.target" >> /etc/systemd/system/vncserver@1.service systemctl daemon-reload systemctl enable vncserver@1.service su - user -c "vncserver -kill :1" systemctl start vncserver@1 add-apt-repository ppa:webupd8team/java -y # temp fix to webupd8 issue cd /var/lib/dpkg/info sudo sed -i 's|JAVA_VERSION=8u151|JAVA_VERSION=8u162|' oracle-java8-installer.* sudo sed -i 's|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1/|' oracle-java8-installer.* sudo sed -i 's|SHA256SUM_TGZ="c78200ce409367b296ec39be4427f020e2c585470c4eed01021feada576f027f"|SHA256SUM_TGZ="68ec82d47fd9c2b8eb84225b6db398a72008285fafc98631b1ff8d2229680257"|' oracle-java8-installer.* sudo sed -i 's|J_DIR=jdk1.8.0_151|J_DIR=jdk1.8.0_162|' oracle-java8-installer.* apt-get update && apt get upgrade -y # end of fix. apt-get install oracle-java8-installer -y apt purge --autoremove xscreensaver -y echo "DONE!" https://paste.ofcode.org/dEjdtKeF5xcnpF2LjB6zu2 I've also got a video you can use to actually set it up:
-
What is the biggest loss you guys ever had while goldfarming/botting?
John Cena replied to R3G3N's topic in Botting & Bans
Lost like 150mill to a chain ban.