Developer and negligence.
Hello guys, long time I didn’t write something about my journey in Cyber Security. I’m quite busy with my college activities and attending…Continue reading on Medium »
Read more...
Hello guys, long time I didn’t write something about my journey in Cyber Security. I’m quite busy with my college activities and attending…Continue reading on Medium »
Read more...
When security issues are considered as features (GITHUB)
https://medium.com/@carlosdanielgiovanella/when-security-issuse-are-considered-as-features-github-dd861fb2221b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@carlosdanielgiovanella/when-security-issuse-are-considered-as-features-github-dd861fb2221b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
When security issuse are considered as features (GITHUB)
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…Continue reading on Medium » (https://medium.com/@carlosdanielgiovanella/when-security-issuse-are-considered-as-features-github-dd861fb2221b?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
When security issuse are considered as features (GITHUB)
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…
Developer and negligence.
https://medium.com/@b0x_in/developer-and-negligence-882f90ff3814?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@b0x_in/developer-and-negligence-882f90ff3814?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Developer and negligence.
Hello guys, long time I didn’t write something about my journey in Cyber Security. I’m quite busy with my college activities and attending…
Hello guys, long time I didn’t write something about my journey in Cyber Security. I’m quite busy with my college activities and attending…Continue reading on Medium » (https://medium.com/@b0x_in/developer-and-negligence-882f90ff3814?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Developer and negligence.
Hello guys, long time I didn’t write something about my journey in Cyber Security. I’m quite busy with my college activities and attending…
Kali Linux Tutorials
PenguinTrace : Tool To Show How Code Runs At The Hardware Level
penguinTrace is intended to help build an understanding of how programs run at the hardware level. It provides a way to see what instructions compile to, and then step through those instructions and see how they affect machine state as well as how this maps back to variables in the original program. A bit more background is available on the website.
penguinTrace starts a web-server which provides a web interface to edit and run code. Code can be developed in C, C++ or Assembly. The resulting assembly is then displayed and can then be stepped through, with the values of hardware registers and variables in the current scope shown.
penguinTrace runs on Linux and supports the AMD64/X86-64 and AArch64 architectures. penguinTrace can run on other operating systems using Docker, a virtual machine or through the Windows Subsystem for Linux (WSL).
The primary goal of penguinTrace is to allow exploring how programs execute on a processor, however the development provided an opportunity to explore how debuggers work and some lower-level details of interaction with the kernel.
Note: penguinTrace allows running arbitrary code as part of its design. By default it will only listen for connections from the local machine. It should only be configured to listen for remote connections on a trusted network and not exposed to the interface. This can be mitigated by running penguinTrace in a container, and a limited degree of isolation of stepped code can be provided when
python
clang
llvm
llvm-dev
libclang-dev
libcap-dev # For containment BuildingTo build penguinTrace outside of a container, clone the repository and run
To build penguinTrace in Docker, run
If built in a container it can then be run with
Then navigate to 127.0.0.1:8080 or localhost:8080 to access the web interface.
Note: In order to run on port 80, you can modify the
If built locally, you can modify the binary to allow it to bind to port 80 with
This must correspond to a directory without
___________________________
@hacking_Attack
@Hacking_Video
PenguinTrace : Tool To Show How Code Runs At The Hardware Level
penguinTrace is intended to help build an understanding of how programs run at the hardware level. It provides a way to see what instructions compile to, and then step through those instructions and see how they affect machine state as well as how this maps back to variables in the original program. A bit more background is available on the website.
penguinTrace starts a web-server which provides a web interface to edit and run code. Code can be developed in C, C++ or Assembly. The resulting assembly is then displayed and can then be stepped through, with the values of hardware registers and variables in the current scope shown.
penguinTrace runs on Linux and supports the AMD64/X86-64 and AArch64 architectures. penguinTrace can run on other operating systems using Docker, a virtual machine or through the Windows Subsystem for Linux (WSL).
The primary goal of penguinTrace is to allow exploring how programs execute on a processor, however the development provided an opportunity to explore how debuggers work and some lower-level details of interaction with the kernel.
Note: penguinTrace allows running arbitrary code as part of its design. By default it will only listen for connections from the local machine. It should only be configured to listen for remote connections on a trusted network and not exposed to the interface. This can be mitigated by running penguinTrace in a container, and a limited degree of isolation of stepped code can be provided when
libcapis available. Getting StartedPrerequisitespenguinTrace requires 64-bit Linux running on a X86-64 or AArch64 processor. It can also run on a Raspberry Pi running a 64-bit (AArch64) Linux distribution. For other operating systems, it can be run on Windows 10 using the Windows Subsystem for Linux (WSL) or in a Docker container. WSL does not support tracee process isolation.python
clang
llvm
llvm-dev
libclang-dev
libcap-dev # For containment BuildingTo build penguinTrace outside of a container, clone the repository and run
make. The binaries will be placed in build/binby default.To build penguinTrace in Docker, run
docker build -t penguintrace github.com/penguintrace/penguintrace. RunningOnce penguinTrace is built, running the penguintracebinary will start the server.If built in a container it can then be run with
docker run -it -p 127.0.0.1:8080:8080 --tmpfs /tmp:exec --cap-add=SYS_PTRACE --cap-add=SYS_ADMIN --rm --security-opt apparmor=unconfined penguintrace penguintrace. See Containers for details on better isolating the container.Then navigate to 127.0.0.1:8080 or localhost:8080 to access the web interface.
Note: In order to run on port 80, you can modify the
docker runcommand to map from port 8080 to port 80, e.g. -p 127.0.0.1:80:8080.If built locally, you can modify the binary to allow it to bind to port 80 with
sudo setcap CAP_NET_BIND_SERVICE=+ep penguintrace. It can then be run with penguintrace -c SERVER_PORT 80penguinTrace defaults to port 8080 as it is intended to be run as an unprivileged user. Temporary FilesThe penguinTrace server uses the system temporary directory as a location for compiled binaries and environments for running traced processes. If the PENGUINTRACE_TMPDIRenvironment variable is defined, this directory will be used. It will fall back to the TMPDIRenvironment variable and finally the directories specified in the C library.This must correspond to a directory without
noexecset, if running in a container it is likely the filesystem will have this set by default. NetworkingBy default penguinTrace only listens on the loopback device and IPv4. If the server is configured to listen on all addresses, then also s[...]___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
PenguinTrace : Tool To Show How Code Runs At The Hardware Level
penguinTrace is intended to help build an understanding of how programs run at the hardware level. It provides a way to see what instructions
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials PenguinTrace : Tool To Show How Code Runs At The Hardware Level penguinTrace is intended to help build an understanding of how programs run at the hardware level. It provides a way to see what instructions compile to, and then step through…
etting the server to IPv6 will allow connections on both IPv4 and IPv6, this is the default mode when running in a Docker container.
This is because penguinTrace only creates a single thread to listen to connections and so can currently only bind to a single address or all addresses. Session HandlingBy default penguinTrace runs in multiple session mode, each time code is compiled a new session is created. The URL fragment (after the ‘#’) of the UI is updated with the session id, and this URL can be used to reconnect to the same session.
If running in single session mode each penguinTrace instance only supports a single debugging instance. The web UI will automatically reconnect to a previous session. To support multiple sessions, multiple instances should be launched which are listening on different ports. ContainersThe
Full instructions for setting up a 64-bit OS on Raspberry Pi TBD. Click Here To Download
___________________________
@hacking_Attack
@Hacking_Video
This is because penguinTrace only creates a single thread to listen to connections and so can currently only bind to a single address or all addresses. Session HandlingBy default penguinTrace runs in multiple session mode, each time code is compiled a new session is created. The URL fragment (after the ‘#’) of the UI is updated with the session id, and this URL can be used to reconnect to the same session.
If running in single session mode each penguinTrace instance only supports a single debugging instance. The web UI will automatically reconnect to a previous session. To support multiple sessions, multiple instances should be launched which are listening on different ports. ContainersThe
docker_build.shand docker_run.shscripts provide an example of how to run penguinTrace in a Docker container. Dockerfile_noisolateprovides an alterative way of running that does not require the SYS_ADMINcapability but provides less isolation between the server and the traced processes. The SYS_PTRACEcapability is always required for the server to trace processes. misc/apparmor-profileprovides an example AppArmor profile that is suitable for running penguinTrace but may need some customisation for the location of temporary directories and compilers. AArch64 / Raspberry PipenguinTrace will only run under a 64-bit operating system. The official operating systems provided for the Raspberry Pi are all 32-bit, to run penguinTrace something such as pi64 or Arch Linux Arm is required.Full instructions for setting up a 64-bit OS on Raspberry Pi TBD. Click Here To Download
___________________________
@hacking_Attack
@Hacking_Video
Hacking on Medium
~~ my life with hackers ~~
zoom bomers
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
~~ my life with hackers ~~
zoom bomers
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
~~ my life with hackers ~~
zoom bomers
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Everything You Need to Know About Hacks, Malware, and Cyberattacks
https://cdn-images-1.medium.com/max/640/1*lhN-ejHJWAcuf4YtP2mL7w.jpeg
The digital world is now the real world. Businesses are digitizing their services everywhere you look to keep up with changing market…
Continue reading on Axiom »
___________________________
@hacking_Attack
@Hacking_Video
Everything You Need to Know About Hacks, Malware, and Cyberattacks
https://cdn-images-1.medium.com/max/640/1*lhN-ejHJWAcuf4YtP2mL7w.jpeg
The digital world is now the real world. Businesses are digitizing their services everywhere you look to keep up with changing market…
Continue reading on Axiom »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Everything You Need to Know About Hacks, Malware, and Cyberattacks
The digital world is now the real world. Businesses are digitizing their services everywhere you look to keep up with changing market…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
When security issues are considered as features (GITHUB)
https://cdn-images-1.medium.com/max/1516/1*vQaTK9kOSAeXMYJxE_oLmQ.jpeg
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
When security issues are considered as features (GITHUB)
https://cdn-images-1.medium.com/max/1516/1*vQaTK9kOSAeXMYJxE_oLmQ.jpeg
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
When security issuse are considered as features (GITHUB)
After 3 times in a row reporting issues that they do considerate as ‘abuse’ and not a vulnerability, I am publishing a PoC for their…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Burp Suite? No Thanks! Blind SQLi in DVWA With Python (Part 2) — StackZero
https://cdn-images-1.medium.com/max/1280/1*iSxJgJubrnOwSZZxUsFiBg.jpeg
Let’s build Blind SQLi attack together, without tools but just with Python
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Burp Suite? No Thanks! Blind SQLi in DVWA With Python (Part 2) — StackZero
https://cdn-images-1.medium.com/max/1280/1*iSxJgJubrnOwSZZxUsFiBg.jpeg
Let’s build Blind SQLi attack together, without tools but just with Python
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Burp Suite? No Thanks! Blind SQLi in DVWA With Python (Part 2) — StackZero
Let’s build Blind SQLi attack together, without tools but just with Python
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How To Attacking The Domain Controller
https://cdn-images-1.medium.com/max/2600/0*BJmjOs7IYllkdh3E
If you were lucky enough to get a local administrative account or a domain admin account, the next target is usually the Domain Controller…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
How To Attacking The Domain Controller
https://cdn-images-1.medium.com/max/2600/0*BJmjOs7IYllkdh3E
If you were lucky enough to get a local administrative account or a domain admin account, the next target is usually the Domain Controller…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How To Attacking The Domain Controller🤔😮😮
If you were lucky enough to get a local administrative account or a domain admin account, the next target is usually the Domain Controller…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
OSCP — The Official Guide
https://cdn-images-1.medium.com/max/2600/0*Dltct82pIZnkQEwa
So you are looking to become an Offensive Security Certified Professional (OSCP) ?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
OSCP — The Official Guide
https://cdn-images-1.medium.com/max/2600/0*Dltct82pIZnkQEwa
So you are looking to become an Offensive Security Certified Professional (OSCP) ?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
OSCP — The Official Guide
So you are looking to become an Offensive Security Certified Professional (OSCP) ?
hacking: security in practice
topmostp: A simple CLI tool to retrieve the N top most used ports
I know that the top ports can be retrieved with a single bash oneliner, but this tool gives you also different features such as stats about a specific port and also allows you to find the port by service. It is particularly useful when chained with other tools like
Finally there is also a little demo made with
This is the link of the GitHub repo: https://github.com/cybersecsi/topmostp
submitted by /u/deleee
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
topmostp: A simple CLI tool to retrieve the N top most used ports
topmostp(Topmost Ports) is a tool that allows you to quickly retrieve the most used ports. The source of the ranking is the nmap-servicesin the nmap repo.I know that the top ports can be retrieved with a single bash oneliner, but this tool gives you also different features such as stats about a specific port and also allows you to find the port by service. It is particularly useful when chained with other tools like
naabu:naabu -p $(topmostp all 15 --silent) -host example.com In this snippet the output of topmostpis used to retrieve the list of the top 10 ports and it is chained with the naabuport scanning tool.Finally there is also a little demo made with
asciinemaeven though in this demo some features (like statsand search) are missing.This is the link of the GitHub repo: https://github.com/cybersecsi/topmostp
submitted by /u/deleee
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
topmostp: A simple CLI tool to retrieve the N top most used ports
``topmostp`` (**Topmost P**orts) is a tool that allows you to quickly retrieve the **most used ports**. The source of the ranking is the...