BrowserCheck for Firefox and Google Chrome

In this article I will explain a tool which I coded as a project for Programming Windows GUI class in University of Lodz. This tool tested on Mozilla Firefox Version 77.01 and Google Chrome Version 83.0.4103.97. Basically it helps you to see your old reports,to create a new case etc. Let’s get started. First you […]

Examining Firefox Database

Nowadays many crimes can be solved with browser datas. During Firefox forensics, examiners use these Sqlite files for the purpose of analysis by opening them in a database viewer. Let’s see what kind of things Firefox has. Linux~/.config/mozillafirefox/Default/databases Mac OS X~/Library/Application Support/Mozilla/Firefox/Profiles/ Windows XPC:\Documents and Settings\%USERNAME%\Application Data\Mozilla\Firefox\ Windows Vista & aboveC:\Users\admin\AppData\Roaming\Mozilla\Firefox\Profiles\_.default Above you can see […]

PentesterLab XSS Solutions and How to Use Beef

Cross-site Scripting (XSS) is a client-side code injection attack. There 3 types of XSS. 1-Reflected XSS 2-Stored XSS 3- DOM XSS We can execute malicious javascript code which is stealing cookie or redirecting victim anywhere. Example1 In Example1, the first thing I tried is injecting <a> tag. I saw that the input is directly printed. […]

PentesterLab Command Injections

Hello, in this article I’m gonna show you command injection vulnerability. I’ll be using PentesterLab for this. You can download it here. Let’s get started. So what is the command injection? According to Owasp : Command injection is an attack in which the goal is execution of arbitrary commands on the host operating system via […]

Data Recovery on NTFS File System

Welcome back! I’ve a good news for you. You’ll learn how can you recover data from MFT on NTFS File System. Let’s keep it short and begin. First of all we’ll learn what is MFT. MFT is a component which contained on NTFS files. It’s the heart of NTFS because it contains all information about […]

How to Fix Handshake Fail in JAVA

Hey guys! I wanted to tell you handshake fail that caused trouble me on time. If you familiar with information gathering, I mean if you’ve tried to code an information gathering tool, you may have come face to face already or you’ll be come soon. So why this problem occurs? The SSL handshake is initiated […]

File Signature Analysis with JAVA

Hey guys! In this article I’m going to tell you what is file signature and how can you code it. First of all , let’s start with what is file signature. What is the File Signature? The signature is unique mark for a file. The structure of a file normally consist of: Filename File Header/Footer […]