fbpx

8007000E-Windows 7 Update Error

Can’t Install Windows Updates error 8007000E Solution: I have downloaded patch KB3102810  After that reboot the system and check for new updates. Windows Update are working fine. Write your valuable inputs in comment box.

A user account was locked out Event ID 4740

The indicated user account was locked out after repeated logon failures due to a bad password. See event ID 4767 for account unlocked. This event is logged both for local SAM accounts and domain accounts. Example 4740 A user account was locked out. Subject:    Security ID:  SYSTEM    Account Name:  WIN-R9H529RIO4Y$    Account Domain:  WORKGROUP    Logon ID:  0x3e7 Account That Was … Read more

Penetration Testing(Pen Test) The Ultimate Guide

What is penetration testing? Penetration testing is an art. You can find out a lot of techniques and understand all of the tools, but the reality is that software is complex, especially when you start putting a lot of software systems together. It’s that complexity that means that there is no one-size-fits-all solution when it … Read more

Powershell – How To – SID To User

Step 1: Domain User to SID This will give you a Domain User’s SID $objUser = New-Object System.Security.Principal.NTAccount(“DOMAIN_NAME”, “USER_NAME”) $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value Step 2: SID to Domain User This will allow you to enter a SID and find the Domain User $objSID = New-Object System.Security.Principal.SecurityIdentifier ` (“ENTER-SID-HERE”) $objUser = $objSID.Translate( [System.Security.Principal.NTAccount]) $objUser.Value Step 3: … Read more

windows script to check Server Uptime

Description Ever wanted a simple HTML report showing you the UP/DOWN status of your servers? And for a little extra flavor how long that server has been up for? Some basic disk information? 1. Download the script to your favorite location and name it Uptime.ps1 2. Open a Powershell prompt and type: Get-Help pathtoscript\Uptime.ps1 –Full … Read more

Offline Squid Proxy log analysis

Squid Access Log analysis with simple python command What is SquidMagic Master? squidmagic is a tool which is designed to analyze a web-based network traffic to detect central command and control (C&C) servers and Malicious site, using Squid proxy server and Spamhaus.   Who is  Spamhaus? The Spamhaus Project is an international nonprofit organization that tracks … Read more