How to take screenshot of url with PHP Here is an example and source code of how to take screenshot of url with php. I have taken this code from one of my projects. It is also able to handle…
Programming, Security and Tech (and Code Snippets)
Programming
How to take screenshot of url with PHP Here is an example and source code of how to take screenshot of url with php. I have taken this code from one of my projects. It is also able to handle…
Python subdomain bruteforce script This script basically tries to bruteforce the subdomains of a given domain name. It includes various options such has min and max length, avoiding scanning when certain character are detected and so on. Its currently single…
Assembly language crash course (Intel x86 Architecture) The goal of this assembly language crash course is to help you have a quick overview of the assembly language, and transition from a higher-level language to a lower-level one (in this case,…
DataTables filter by ip address I had to make a custom filter for ip address which accepted cidr notation (e.g /24). While there was the function to sort by ip at the time when i was doing it, a filter…
Python pingsweep script This python pingsweep script basically does a ping sweep over a specified ip range (with cidr notation) and generates the output in a .txt file . it should work on both python2+ and python3+ Output will give…