Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
AppCache’s forgotten tales

The beginning of this story is almost as old as Chrome itself. It started ten years ago — precisely on version 5.0.375 — when Application…Continue reading on Medium »
Read more...
hacking: security in practice
Movies related to hacking

I know this is an "out of the scope" post. But can someone tell me some movies or series related to hacking that are not about someone smashing keys on a keyboard but very realistic with correct commands, tools and everything.

Note - I've already watched Mr.Robot so please suggest something other than that.

submitted by /u/Hot-Fridge-with-ice
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Port 179 on android devices

Hi,

Recently I found a bunch (found on my smartphone using mobile network, then did a scan on the range) of android devices with port 179 open. It's highly unlikely to be related with bgp.

I really don't want to waste time looking in to it (my device isn't rooted), anyone else found a similar port open on their devices, and if so which app is opening it.

There's another possibility, since what I did was an external scan to my IP address, it can be just the network router accepting traffic on behalf of every device.



Greetings,

submitted by /u/fp2099
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Deep Web
Help

I am new to all this but have a very basic grasp on it. I am trying to install tails on the computer using linux however going to their site and others to check code sourcing, it won't install. Does anyone have any idea what I could be doing wrong? Also if anyone can leave some interesting places to go or things to see/visit please lmk! Thanks!

submitted by /u/RELLIOTTM
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Go Packagesthrought Golang Packages (https://github.com/rust-lang/cargo) (golang package manager)go get github.com/R4yGM/dorkscoutthis will work for every platform
Dockerif you don't have docker installed you can follow their guide (https://docs.docker.com/engine/install/)first of all you have to pull the docker image (only 17.21 MB) from the docker registry, you can see it here (https://hub.docker.com/r/r4yan/dorkscout), if you don't want to pull the image you can also clone the repository and then build the image from the Dockerfiledocker pull r4yan/dorkscout:latestif you don't want to pull the image you can download or copy the dorkscout Dockerfile (https://www.kitploit.com/search/label/Dockerfile) that can be found here (https://github.com/R4yGM/dorkscout/blob/1.0/Dockerfile) and then build the image from the Dockerfilethen if you want to launch the container (https://www.kitploit.com/search/label/Container) you have to first create a volume to share your files to the containerdocker volume create --name dorkscout_datausing docker when you launch the container it will automatically install the dork lists inside a directory called "dorkscout" :Vulnerability Data.dorkscout' -rw-r--r-- 1 r4yan r4yan 49048 Jul 31 14:56 'Pages Containing Login Portals.dorkscout' -rw-r--r-- 1 r4yan r4yan 16112 Jul 31 14:56 'Sensitive Directories.dorkscout' -rw-r--r-- 1 r4yan r4yan 451 Jul 31 14:56 'Sensitive Online Shopping Info.dorkscout' -rw-r--r-- 1 r4yan r4yan 29938 Jul 31 14:56 'Various Online Devices.dorkscout' -rw-r--r-- 1 r4yan r4yan 2802 Jul 31 14:56 'Vulnerable Files.dorkscout' -rw-r--r-- 1 r4yan r4yan 4925 Jul 31 14:56 'Vulnerable Servers.dorkscout' -rw-r--r-- 1 r4yan r4yan 8145 Jul 31 14:56 'Web Server Detection.dorkscout' ">-rw-r--r-- 1 r4yan r4yan 110 Jul 31 14:56 .dorkscout
-rw-r--r-- 1 r4yan r4yan 79312 Aug 10 20:30 'Advisories and Vulnerabilities.dorkscout'
-rw-r--r-- 1 r4yan r4yan 6352 Jul 31 14:56 'Error Messages.dorkscout'
-rw-r--r-- 1 r4yan r4yan 38448 Jul 31 14:56 'Files Containing Juicy Info.dorkscout'
-rw-r--r-- 1 r4yan r4yan 17110 Jul 31 14:56 'Files Containing Passwords.dorkscout'
-rw-r--r-- 1 r4yan r4yan 1879 Jul 31 14:56 'Files Containing Usernames.dorkscout'
-rw-r--r-- 1 r4yan r4yan 5398 Jul 31 14:56 Footholds.dorkscout
-rw-r--r-- 1 r4yan r4yan 5568 Jul 31 14:56 'Network or Vulnerability Data.dorkscout'
-rw-r--r-- 1 r4yan r4yan 49048 Jul 31 14:56 'Pages Containing Login Portals.dorkscout'
-rw-r--r-- 1 r4yan r4yan 16112 Jul 31 14:56 'Sensitive Directories.dorkscout'
-rw-r--r-- 1 r4yan r4yan 451 Jul 31 14:56 'Sensitive Online Shopping Info.dorkscout'
-rw-r--r-- 1 r4yan r4yan 29938 Jul 31 14:56 'Various Online Devices.dorkscout'
-rw-r--r-- 1 r4yan r4yan 2802 Jul 31 14:56 'Vulnerable Files.dorkscout'
-rw-r--r-- 1 r4yan r4yan 4925 Jul 31 14:56 'Vulnerable Servers.dorkscout'
-rw-r--r-- 1 r4yan r4yan 8145 Jul 31 14:56 'Web Server Detection.dorkscout'so that you don't have to install them then you can start scanning by doing : ">docker run -v Dorkscout:/dorkscout r4yan/dorkscout scan replace the with the options/arguments you want to give to dorkscout, example :docker run -v dorkscout_data:/dorkscout r4yan/dorkscout scan -d="/dorkscout/Sensitive Online Shopping Info.dorkscout" -H="/dorkscout/a.html"If you wanted to scan throught a proxy using a docker container you have to add the --net host optionexample :docker run --net host -v dorkscout_data:/dorkscout r4yan/dorkscout scan -d="/dorkscout/Sensitive Online Shopping Info.dorkscout" -H="/dorkscout/a.html -x socks5://127.0.0.1:9050"Always save your results inside the volume and not in the container because then the results will be deleted! you can save them by writing the same volume path of the directory you are saving the resultsif you added this and did everything correctly at the end of every scan you'd find the results inside the folder /var/lib/docker/volumes/dorkscout_data/_datathis will work for every platform
Executable

___________________________
@hacking_Attack
@Hacking_Video
you can also download the already compiled binaries here (https://github.com/R4yGM/dorkscout/releases) and then execute them
Usage
dorkscout -hUsage:
dorkscout [command]

Available Commands:
completion generate the autocompletion script for the specified shell
delete deletes all the .dorkscout files inside a given directory
help Help about any command
install installs a list of dorks from exploit-db.com
scan scans a specific website or all the websites it founds for a list of dorks

Flags:
-h, --help help for dorkscout

Use "dorkscout [command] --help" for more information about a command.to start scanning with a wordlist and a proxy that will then return the results in a HTML formatdorkscout scan -d="/dorkscout/Sensitive Online Shopping Info.dorkscout" -H="/dorkscout/a.html" -x socks5://127.0.0.1:9050results :

___________________________
@hacking_Attack
@Hacking_Video