ExploringOTP

What is second factor authentication? The code which we enter after entering username and password, how does this work ? In this blog post will be exploring how one time password/passcode (OTP) works. Will start with what is included in standard on OTP and then implementing this using python code. ...

June 29, 2020 · 5 min

Simple Http Server

Here is a python code to start SimpleHTTPServer with an upload option. ...

September 7, 2019 · 5 min

Create hashtable using two different variables in PowerShell

Here is how we can combinine two variables into hashtable, ...

July 21, 2019 · 1 min

Capture WPA2 Handshake on 5Ghz

In this blog post wifi-pineapple will be used to capture WPA2 handshake on 5GHz access point. Atheros based chipset is used in Wifi pineapple. ...

July 8, 2019 · 1 min

Pyautogui, a module to automate keyboard and mouse function

pyautogui is a python module to automate keyboard and mouse actions. I found this very interesting and creepy too ! :). Here are few things to 📝 note, ...

July 7, 2019 · 1 min

FolderPaths and FilesNames - PowerShell

FolderPaths and FilesNames - PowerShell Loading folder path and filenames manually gives many errors. Spaces, spelling, different file paths and many others add to these. One way to avoid this is to allow the user to choose the path and filenames. Unless these are some predefined file/folderpaths which are static everywhere. In this blog post two PowerShell functions will be defined for this purposes. Folder Path This script will create a pop-up window to select folder path. ...

May 27, 2019 · 1 min

Qualys API basics

Basics of Qualys API Introduction Qualys has published a detailed guide on using API. Primarily this blog will concentrate on “cURL” and “PowerShell” as the scripting language to query the API. Note on API limits: Qualys has applied rate limit on API calls based on subscription. Reading API limit is easy, look for X-Powered-By header in http-reponse headers, X-RateLimit-Limit: API calls limit X-RateLimit-Window-Sec:/60*60" hrs. Ex: if “X-RateLimit-Limit: 100” “X-RateLimit-Window-Sec: 86400”\ Then, ...

May 27, 2019 · 3 min

RDP MitM Demo

Pre-Requisites We need three virtual machines to recreate this attack. I used virtual box to setup these virtual machines. All three machines must be on same subnet. ...

May 21, 2019 · 1 min