TryHackMe Room: https://tryhackme.com/room/owasptop10
Learn about and exploit each of the OWASP Top 10 vulnerabilities; the 10 most…Continue reading on Medium » (https://medium.com/@_Jota_/owasp-top-10-write-up-76e7f68e5a65?source=rss------bug_bounty-5)
Learn about and exploit each of the OWASP Top 10 vulnerabilities; the 10 most…Continue reading on Medium » (https://medium.com/@_Jota_/owasp-top-10-write-up-76e7f68e5a65?source=rss------bug_bounty-5)
Haloo,, Pada kali ini saya akan membagikan sedikit catatan yang telah saya pelajari dalam perjalanan saya belajar Reverse Mobile App…Continue reading on Medium » (https://medium.com/@wicaksonoindra/reverse-code-apk-notes-980846d68915?source=rss------bug_bounty-5)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
OWASP Top 10 Write-up
https://cdn-images-1.medium.com/max/600/0*Z2ZavGLaBw687T_N.png
TryHackMe Room: https://tryhackme.com/room/owasptop10
Learn about and exploit each of the OWASP Top 10 vulnerabilities; the 10 most…
Continue reading on Medium »
OWASP Top 10 Write-up
https://cdn-images-1.medium.com/max/600/0*Z2ZavGLaBw687T_N.png
TryHackMe Room: https://tryhackme.com/room/owasptop10
Learn about and exploit each of the OWASP Top 10 vulnerabilities; the 10 most…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Walkthrough: Basic Pentest [PT/BR]
https://cdn-images-1.medium.com/max/850/1*RdlNz0-erDNIR0L0XfRhkA.png
Ei, e aí! Tranquilo? Hoje vou resolver a máquina “Basic Pentest”.
Continue reading on Medium »
Walkthrough: Basic Pentest [PT/BR]
https://cdn-images-1.medium.com/max/850/1*RdlNz0-erDNIR0L0XfRhkA.png
Ei, e aí! Tranquilo? Hoje vou resolver a máquina “Basic Pentest”.
Continue reading on Medium »
PART 2: How I Met Your Beacon - Cobalt Strike - @MDSecLabs
https://www.reddit.com/r/redteamsec/comments/w7jhk6/part_2_how_i_met_your_beacon_cobalt_strike/
submitted by /u/dmchell (https://www.reddit.com/user/dmchell)
[link] (https://www.mdsec.co.uk/2022/07/part-2-how-i-met-your-beacon-cobalt-strike/) [comments] (https://www.reddit.com/r/redteamsec/comments/w7jhk6/part_2_how_i_met_your_beacon_cobalt_strike/)
https://www.reddit.com/r/redteamsec/comments/w7jhk6/part_2_how_i_met_your_beacon_cobalt_strike/
submitted by /u/dmchell (https://www.reddit.com/user/dmchell)
[link] (https://www.mdsec.co.uk/2022/07/part-2-how-i-met-your-beacon-cobalt-strike/) [comments] (https://www.reddit.com/r/redteamsec/comments/w7jhk6/part_2_how_i_met_your_beacon_cobalt_strike/)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Blackbird : An OSINT Tool To Search For Accounts By Username In 101 Social Networks
An OSINT tool to search fast for accounts by username across 142 sites.
The Lockheed SR-71 “Blackbird” is a long-range, high-altitude, Mach 3+ strategic reconnaissance aircraft developed and manufactured by the American aerospace company Lockheed Corporation.
Setup
Clone the repository
git clone https://github.com/p1ngul1n0/blackbird
cd blackbird
Install requirements
pip install -r requirements.txt
Usage
Search by username
python blackbird.py -u username
Run WebServer
python blackbird.py –web
Read results file
python blackbird.py -f username.json
List supportted sites
python blackbird.py –list-sites
Download
Blackbird : An OSINT Tool To Search For Accounts By Username In 101 Social Networks
An OSINT tool to search fast for accounts by username across 142 sites.
The Lockheed SR-71 “Blackbird” is a long-range, high-altitude, Mach 3+ strategic reconnaissance aircraft developed and manufactured by the American aerospace company Lockheed Corporation.
Setup
Clone the repository
git clone https://github.com/p1ngul1n0/blackbird
cd blackbird
Install requirements
pip install -r requirements.txt
Usage
Search by username
python blackbird.py -u username
Run WebServer
python blackbird.py –web
Read results file
python blackbird.py -f username.json
List supportted sites
python blackbird.py –list-sites
Download
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
PacketStreamer : Distributed Tcpdump For Cloud Native Environments
PacketStreamer is a high-performance remote packet capture and collection tool. It is used by Deepfence’s ThreatStryker security observability platform to gather network traffic on demand from cloud workloads for forensic analysis.
Primary design goals:
* Stay light, capture and stream, no additional processing
* Portability, works across virtual machines, Kubernetes and AWS Fargate. Linux and Windows
PacketStreamer sensors are started on the target servers. Sensors capture traffic, apply filters, and then stream the traffic to a central reciever. Traffic streams may be compressed and/or encrypted using TLS.
The PacketStreamer receiver accepts PacketStreamer streams from multiple remote sensors, and writes the packets to a local
PacketStreamer sensors collect raw network packets on remote hosts. It selects packets to capture using a BPF filter, and forwards them to a central reciever process where they are written in pcap format. Sensors are very lightweight and impose little performance impact on the remote hosts. PacketStreamer sensors can be run on bare-metal servers, on Docker hosts, and on Kubernetes nodes.
The PacketStreamer receiver accepts network traffic from multiple sensors, collecting it into a single, central
When to use PacketStreamer
PacketStreamer meets more general use cases than existing alternatives. For example, PacketBeat captures and parses the packets on multiple remote hosts, assembles transactions, and ships the processed data to a central ElasticSearch collector. ksniff captures raw packet data from a single Kubernetes pod.
Use PacketStreamer if you need a lightweight, efficient method to collect raw network data from multiple machines for central logging and analysis.
Quick Start
For full instructions, refer to the PacketStreamer Documentation.
You will need to install the golang toolchain and
Pre-requisites (Ubuntu): sudo apt install golang-go libpcap-dev
git clone https://github.com/deepfence/PacketStreamer.git
cd PacketStreamer/
make
Run a PacketStreamer receiver, listening on port 8081 and writing pcap output to /tmp/dump_file (see receiver.yaml):
./packetstreamer receiver –config ./contrib/config/receiver.yaml
Who uses PacketStreamer?
* Deepfence ThreatStryker uses PacketStreamer to capture traffic from production platforms for forensics and anomaly detection.
Download
PacketStreamer : Distributed Tcpdump For Cloud Native Environments
PacketStreamer is a high-performance remote packet capture and collection tool. It is used by Deepfence’s ThreatStryker security observability platform to gather network traffic on demand from cloud workloads for forensic analysis.
Primary design goals:
* Stay light, capture and stream, no additional processing
* Portability, works across virtual machines, Kubernetes and AWS Fargate. Linux and Windows
PacketStreamer sensors are started on the target servers. Sensors capture traffic, apply filters, and then stream the traffic to a central reciever. Traffic streams may be compressed and/or encrypted using TLS.
The PacketStreamer receiver accepts PacketStreamer streams from multiple remote sensors, and writes the packets to a local
pcapcapture file.PacketStreamer sensors collect raw network packets on remote hosts. It selects packets to capture using a BPF filter, and forwards them to a central reciever process where they are written in pcap format. Sensors are very lightweight and impose little performance impact on the remote hosts. PacketStreamer sensors can be run on bare-metal servers, on Docker hosts, and on Kubernetes nodes.
The PacketStreamer receiver accepts network traffic from multiple sensors, collecting it into a single, central
pcapfile. You can then process the pcap file or live feed the traffic to the tooling of your choice, such as Zeek, WiresharkSuricata, or as a live stream for Machine Learning models.When to use PacketStreamer
PacketStreamer meets more general use cases than existing alternatives. For example, PacketBeat captures and parses the packets on multiple remote hosts, assembles transactions, and ships the processed data to a central ElasticSearch collector. ksniff captures raw packet data from a single Kubernetes pod.
Use PacketStreamer if you need a lightweight, efficient method to collect raw network data from multiple machines for central logging and analysis.
Quick Start
For full instructions, refer to the PacketStreamer Documentation.
You will need to install the golang toolchain and
libpcap-devbefore building PacketStreamer.Pre-requisites (Ubuntu): sudo apt install golang-go libpcap-dev
git clone https://github.com/deepfence/PacketStreamer.git
cd PacketStreamer/
make
Run a PacketStreamer receiver, listening on port 8081 and writing pcap output to /tmp/dump_file (see receiver.yaml):
./packetstreamer receiver –config ./contrib/config/receiver.yaml
Who uses PacketStreamer?
* Deepfence ThreatStryker uses PacketStreamer to capture traffic from production platforms for forensics and anomaly detection.
Download
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Crypt 2 | Defend the Web
https://cdn-images-1.medium.com/max/700/0*SdwADKKNm7BWAq-t.jpg
Somehow I skipped this one by accident in my series
Continue reading on Medium »
Crypt 2 | Defend the Web
https://cdn-images-1.medium.com/max/700/0*SdwADKKNm7BWAq-t.jpg
Somehow I skipped this one by accident in my series
Continue reading on Medium »
MSA Weekly 5 — “How to Get Sensitive Data Exposure on Web Application”
Sensitive data exposure merupakan jenis kerentanan yang masuk ke dalam kategori A03 di dalam OWASP 2017. Dengan itu, jelas bahwa sensitive…Continue reading on Medium »
Read more...
Sensitive data exposure merupakan jenis kerentanan yang masuk ke dalam kategori A03 di dalam OWASP 2017. Dengan itu, jelas bahwa sensitive…Continue reading on Medium »
Read more...
MSA Weekly 5 — “How to Get Sensitive Data Exposure on Web Application”
https://medium.com/@frozzipies/msa-weekly-5-how-to-get-sensitive-data-exposure-on-web-application-a457fa7f8440?source=rss------bug_bounty-5
https://medium.com/@frozzipies/msa-weekly-5-how-to-get-sensitive-data-exposure-on-web-application-a457fa7f8440?source=rss------bug_bounty-5
Sensitive data exposure merupakan jenis kerentanan yang masuk ke dalam kategori A03 di dalam OWASP 2017. Dengan itu, jelas bahwa sensitive…Continue reading on Medium » (https://medium.com/@frozzipies/msa-weekly-5-how-to-get-sensitive-data-exposure-on-web-application-a457fa7f8440?source=rss------bug_bounty-5)