Sunday, March 3, 2019

How to set Burp suite proxy

Burp suite is one the best tools for web app testing it has many options e.g SQL injection, Brute force fuzzing etc.. Burp suite is installed on Kali Linux so u don’t have to in stall to run in open terminal and type burp suite or go to applications in the left hand top corner of your screen navigate to web app analysis its the top one.

Lets start

open fire fox and type about:preferences in the addressee bar this will take you to the settings here you will need to go to networks proxy its at the bottom of the page
Hacking A Rise networkpoxys

click on it and go to manual proxy configuration then i want you to tick the use this proxy server for all protocols now set the http proxy to 127.0.0.1 and the port to 8080 tick proxy DNS when using socks5 and hit ok Hacking A Rise connectionsettings

now open up burp suite
Hacking A Rise burpsute

and click next and click next one more time till u come to this screen
Hacking A Rise mainscreen
you mite see proxy is glowing red wel click is and make sure intercept is on like so
Hacking A Rise intercept

ALL Right lets see this connected right go back to Firefox and search for anything if this pops up u are connected
Hacking A Rise ucant

so lets go back to burp suite and hit the forward button a few times so u can forward the requests for google search the page should work or you can easy just add google to the no proxy’s in network proxy’s

anyways my next burp suite post will be on how to perform attacks wwith burp suite hope u like this posts lads and thank you for reading

Saturday, March 2, 2019

Installing Kali Linux In Virtual Box

Today we are going to be installing Kali Linux in virtual box.

First, open virtual box and hit the new button.

Hacking A Rise Screenshot_1

Then, this menu will pop up, for type hit Linux and for version hit Debian. You can name it whatever you want but for the sake of this I will just name it Kali. (If vbox changes the type and version just change it back).

Hacking A Rise Screenshot_2

Once you have done that, just hit next. Select how much ram you want to use (Don’t use more then half), I will be using 2GB. Hit next again and then make sure create a virtual hard disk now is ticked.Hacking A Rise Screenshot_3

Hit create, and just leave this setting on the default one. Then select Fixed size (You can do Dynamically allocated if you like but I will just be using fixed size). I will just be making mine around 30GB but you can make it whatever size you want (Don’t make it under 20GB) and then hit create and wait for it to finish.

Hacking A Rise Screenshot_4

Once it’s done that menu will close and it will put you back to your list of installed operating systems. As you will see Kali is now there, so just click on it and then hit the start button. Once it’s loaded up just hit the small folder icon and select your Kali iso, If you don’t have one you can download one at www.Kali.org/downloads (Just make sure you download the full version and not the light version).Hacking A Rise Screenshot_5

Once it has loaded up, just use the arrow keys to scroll down and hit enter on Graphical Install. Then select your language (I will be selecting English but you can select whatever your first language is), Then select your location, hit continue and select your preferred keyboard layout.

Then it will start loading components from CD, just wait for that to finish.Hacking A Rise Screenshot_6

Once everything has loaded you can type in your hostname, I will be using NiFe as mine but you can enter whatever you like (or leave it as kali). I will just be leaving the domain name box blank for now but you can enter one if you want. Once you have done those, you can set the root password (This part is up to you to decide). Once you have thought of a password, you can partition the disk. I will be using guided – entire disk as it’s just a VM. Make sure VBOX HARDDISK is selected and hit continue.Hacking A Rise Screenshot_8

I will just be doing all files in one partition as it is the easiest and quickest option.

Hacking A Rise Screenshot_9

Then just hit continue, and continue again and select yes. Then just wait for it to install. When it asks you to eject any installation media just hit continue.

BASICS OF BASH SCRIPTING

Bash aka (shell) is used mostly in the Unix and Linux systems this the commands we use Example ls list files in a directory or are mostly use cd changes the shells current working directory. Bash is great to write scripts with as it easy to learn and faster to script

so open your fav text editor and type the following line
#!/bin/sh

Hacking A Rise favtextediter

the first line tells Unix that the file is to be executed by /bin/sh this the standard location of the shell on just about every Unix/Linux system this includes mac if you use termux #!/data/data/com.termux/files/usr/bin/bash

the next line type # my first script

the # symbol is use with out the ! as this marks the line as a comment and its ignored by the shell

new line type echo “HACKING A RISE ”

Hacking A Rise ECHO

echo is use for read only command you type echo ” HACKING A RISE ” in terminal it will read whats in the brackets

so now we save the script so press Ctrl and s to save the script name it myscript.sh and save to root

now that its saved lets see does it work so open terminal and type chmod +x myscript.sh and press enter

Hacking A Rise chmod

now type ./myscript.sh

Hacking A Rise Hackingariseecho

the output should be this HACKING A RISE

congrats you just wrote a simple script look lets start adding some more lines

so now we are going to man a calculator in bash to be ran in terminal

here the commands/statement we are Using
1. echo
echo is one of the mostly used command.
It is used to print a line of text in standard output.

$ echo [-neE] [arg …]
2. read
The command read in the Linux is used to read the input from the keyboard.

3. Switch-Case
When there are a lot of if statement in Shell and it becomes confusing. Then it is good to use case statement.

4. bc Command
bc command is used for command line calculator. It is similar to basic calculator by using which we can do basic mathematical calculations. Arithmetic operations are the most basic in any kind of programming.

# !/bin/bash

# the Input
echo “Enter Two numbers : ”
read a
read b

Hacking A Rise INPUT

# Input type of operation
echo “Enter Choice :”
echo “1. Addition”
echo “2. Subtraction”
echo “3. Multiplication”
echo “4. Division”
read ch

Hacking A Rise input2

# calculator operations
case $ch in
1)res=`echo $a + $b | bc`
;;
2)res=`echo $a – $b | bc`
;;
3)res=`echo $a \* $b | bc`
;;
4)res=`echo “scale=2; $a / $b” | bc`
;;
esac
echo “Result : $res”

Hacking A Rise input3

Full script

Hacking A Rise fullscript

save it to Desktop or were want

now lets run it

cd Desktop

chmod 755 ./myscript.sh

./myscript.sh

Hacking A Rise chmod

YUP SNOTS IT WORKS !!!!!!

Hacking A Rise itwoks

Now u know a little bit of bash now u can start making simple scripts to automate your life in hacking

Related

KALI LINUX CTF BLUEPRINTS

Disclaimer

The contributor(s) cannot be held responsible for any misuse of the data. This repository is just a collection of URLs to download eBooks for free. Download the eBooks at your own risks.

DMCA take down cannot be possible as we are not republishing the books/infringement of code, but we are just hosting the links to 3rd party websites where these books can be downloaded.

Download Here : KALI LINUX CTF BLUEPRINTS

Hackers Handbook

Disclaimer

The contributor(s) cannot be held responsible for any misuse of the data. This repository is just a collection of URLs to download eBooks for free. Download the eBooks at your own risks.

DMCA take down cannot be possible as we are not republishing the books/infringement of code, but we are just hosting the links to 3rd party websites where these books can be downloaded.

Download Here : https://mega.nz/#!u2413Y4Y!4gc0GGFWUc57uCQwUg6-0QaS7SxDCReO1hOBbSDRxm4

Friday, March 1, 2019

Browser Mining

So Monero aka XMR has taking a crash coinhive is bankrupt but have no fear the laughing man is here coming to you with the next best thing to Coin-hive these sites i have tested and still testing to this date of the post so lets start the list

1: Coinimp
Coin-imp founded in 2017 its a nice easy layout and has a plug in for all you on WordPress as you can see by the screenshot they offer too currency’s monero and webchain aka web.
Hacking A Rise coinimp
Coin-imp plug in only works with Monero but u can embed the simple java code for web the in to the background of your website over all this not a bad option for anyone starting a site with limited funds its free quick and easy

Coin hive shutting down

So on the February 26, 2019 coin hive a xmr mining platform is closing its doors since the crash in crypto they have no choice to stop
in there post the said

Some of you might have anticipated this, some of you will be surprised. The decision has been made. We will discontinue our service on March 8, 2019. It has been a blast working on this project over the past 18 months, but to be completely honest, it isn’t economically viable anymore.

The drop in hash rate (over 50%) after the last Monero hard fork hit us hard. So did the “crash“ of the crypto currency market with the value of XMR depreciating over 85% within a year. This and the announced hard fork and algorithm update of the Monero network on March 9 has led us to the conclusion that we need to discontinue Coinhive.

Thus, mining will not be operable anymore after March 8, 2019. Your dashboards will still be accessible until April 30, 2019 so you will be able to initiate your payouts if your balance is above the minimum payout threshold.

to find out more go two coinhive