Posts

How to switch between different java versions on Linux

πŸ‘‰Open Terminal and type sudo update-alternatives --config java ┌─[ root @ parrot ]─[ ~ ] └──╼ $ update-alternatives --config java There are 3 choices for the alternative java (providing /usr/bin/java).   Selection    Path                                            Priority   Status ------------------------------------------------------------   0            /usr/lib/jvm/java-10-openjdk-amd64/bin/java      1101      auto mode   1            /usr/lib/jvm/java-10-openjdk-amd64/bin/java      1101      manual mode * 2            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java   1081      manual mode   3            /usr/lib/jvm/java-9-openjdk-amd64/bin/java       1091      manual mode Press <enter> to keep the current choice[*], or type selection number: πŸ‘‰can select desired version by entering the selection number

Add Alias In Linux

_*_ Open bashrc in your fav Editor vim ~/.bashrc ┌─[ root @ parrot ]─[ ~ ] └──╼ $ vim ~/.bashrc _*_ At the end of the file add alias aliasname='commands' and Save _*_ Install the .bashrc source ~/.bashrc ┌─[ root @ parrot ]─[ ~ ] └──╼ $ source ~/.bashrc ** For Help on Vim Commands  Vim Editor

web cam hack search

create an account in shodan copy api key     in terminal   service postgresql start msfconsole   search shodan select - use auxiliary/gather/shodan_search show options   set shodan_apikey < api key > set query “webcamxp” run

Automation, Data Science and Machine Learning for InfoSec...!!

πŸ”¨ Yuki-Chan-The-Auto-Pentest πŸ”¨ Awesome-ml-for-cybersecurity

Android Security

Santoku : Santoku is dedicated to mobile forensics, analysis, and security, and packaged in an easy to use, Open Source platform.

Some nice articles on bug bounty πŸ“°

πŸ”— 10degres.net     by    Gwendal Le Coguic πŸ”— agarri.fr     by    Nicolas GrΓ©goire πŸ”— geekboy.ninja     by    geekboy

πŸŽ₯ Movies For Hackers πŸ“½️

🎬 Every aspiring hacker & cyberpunk must watch these movies - drawing directly from the open-source πŸŽ¬ Hackermovie Club

SQL Injection Overview

πŸ”§  XCat  is a command line program that aides in the exploitation of blind XPath injection vulnerabilities, written in Python

Check browser fingerprinting/Leaks πŸ”

Is your browser safe against tracking : Check Here  [panopticlick] Check your identity after connecting a VPN :  vpninsights     and     Dnsleaktest

An Overview of HoneyPots

🍯Honeyd 🍯 Canary 🍯 Honeypot Or Not?-Shodan 🍯 Conpot Awesome-honeypots: - git 🍯 Honeynet 🍯 Project Honeypot

Install VirtualBox Guest Additions in

Add this to /etc/apt/sources.list: deb http://http.us.debian.org/debian sid main non-free contrib Update repositories and install package sudo apt-get update sudo apt-get install virtualbox-guest-dkms

Some web site to learn and test Hacking skills πŸ”°

Hacksplaining

Nmap essential tips

-A To enable OS and version detection, script scanning -T4 For faster execution,prohibits the dynamic scan delay from exceeding 10 ms for TCP ports -V To see which engines are supported -sS Scan using TCP SYN scan -sU Scan UDP ports -sn Ping Scan - disable port scan -p Scan specified ports -g/--source-port Use given port number -PS/PA/PU/PY[portlist] TCP SYN/ACK, UDP or SCTP discovery to given ports -PE/PP/PM ICMP echo, timestamp, and netmask request discovery probes Examples: Intense Scan nmap -T4 -A -v 10.10.10.63 Regular Scan nmap 10.10.10.63 Quick scan nmap -T4 -F 10.10.10.63 Intense Scan plus UDP  nmap -sS -sU -T4 -A -v 10.10.10.63 Intense Scan with all TCP port nmap -p 1-65535 -T4 -A -v 10.10.10.63 Comprehensive scan [Slow] nmap -sS -sU -T4 -A -v -PE -PP -PS80,443 -PA3389 -PU40125 -PY -g 53 --script "default or (discovery and safe)" 10.10.10.63 Complete Reference  https://nmap.org/book/man.html

Information gathering - Website Links 😈

✋  Please use at your own risk, We are not responsible for any direct or indirect damage caused due to the usage of the information's provided on this site  ✋  😎 ❇️   Grabify IP Logger  : Grab someone's IP address by sending him/her a link, using Banner grabbing technique ❇️  Z-Shadow  : offers free phishing pages of all major websites,

Cyber Security communities πŸ‘₯

πŸ’»  Hackerspaces πŸ’»  Null πŸ’»  Defcon πŸ’»  Blackhat πŸ’»  Securitybsides πŸ’»  OWASP πŸ’»  SANS πŸ’»  Offensive-security πŸ’»  Pentesterlab πŸ’»  Cybrary πŸ’»  Rapid7 πŸ’»  Bugcrowd πŸ’»  Hackerone πŸ’»  0x00sec

Shell Scripting: Overview

Shell : Command Line Interface It's allow users to execute commands and scripts Script: Series of commands in a file Bash : Bourne again shell

Some of the tools that used in Mr.robot :)

DeepSound : A tool and audio converter that hides secret data into audio files. The application also enables you to extract secret files directly from audio files or audio CD tracks John the Ripper is a fast password cracker, currently available for many flavors of Unix, Windows, DOS, and OpenVMS Mimikatz is a great post-exploitation tool written by Benjamin Delpy (gentilkiwi). After the initial exploitation phase, attackers may want to get a firmer foothold on the computer/network. Doing so often requires a set of complementary tools. Mimikatz is an attempt to bundle together some of the most useful tasks that attackers will want to perform.

Linux Terminal Commands

System Infodate – Show the current date and timecal – Show this month's calendaruptime – Show current uptimew – Display who is onlinewhoami – Who you are logged in asfinger user – Display information about useruname -a – Show kernel informationcat /proc/cpuinfo – CPU informationcat /proc/meminfo – Memory informationdf -h – Show disk usagedu – Show directory space usagefree – Show memory and swap usage Keyboard ShortcutsEnter – Run the commandUp Arrow – Show the previous commandCtrl + R – Allows you to type a part of the command you're looking for and finds itCtrl + Z – Stops the current command, resume with fg in the foreground or bg in the backgroundCtrl + C – Halts the current command, cancel the current operation and/or start with a fresh new lineCtrl + L – Clear the screencommand | less – Allows the scrolling of the bash command window using Shift + Up Arrow and Shift + Down Arrow!! – Repeats the last commandcommand  !$ – Repeats the last argument of the previous commandE