Change Chipset Regulations Countries’ regulations can be fairly complex, and CRDA sets the radio to operate within the regulations of the operating country. Specifically, it enforces transmit powe...
Monitor Mode airmon-ng # Monitor Mode sudo airmon-ng start wlan0 # If you get error for the process being running you can use 1 of 2 options # First option sudo airmon-ng check kill # Second option...
Nearly everything in JavaScript is an object. This includes arrays, Browser APIs, and functions. The only exceptions are null, undefined, strings, numbers, booleans, and symbols. Unlike other obje...
Java Source Code Recovery JAR files contain compiled Java classes and to recover the original Java source code from them we can make use of the JD-GUI decompiler. JD-GUI allows us to do that via ...
Decompiling Java Classes While there are many tools that we could use to decompile Java bytecode (with various degrees of success), we will use the JD-GUI decompiler in this course. Java-based web ...
We’ll start our hunt for DOM-based XSS by searching for references to the document object. However, running a search for “document” will generate many false positives. Instead, we’ll search for “do...
Manipulation of Assembly Attributes for Debugging Debugging .NET web applications can sometimes be a bit tricky due to the optimizations that are applied to the executables at runtime. One of the w...