Ethical Hacking Phases

Phases of Social Engineering Ethical Hacking Tutorial

Uses of Firewall

Uses of Firewall

Ethical Hacking என்றால் என்ன

 

What is ethical hacking

Tool to Monitor the Host –  http://www.mediafire.com/file/2lm5nqpl6gvbmox/host-mon.rar/file

 

Windows Controller Executablehttps://drive.google.com/file/d/1Clny20uzXxNq5_8Kn48IIScD10c22wkp/view?usp=sharing

 

Shell Programming Code 1

Param(

[string]$Computer = “VENKAT-KRISHIV”

)

$Connection = Test-Connection $Computer -Count 1 -Quiet

if ($Connection -eq “True”)

 {

   $ComputerHW

       = Get-WmiObject -Class Win32_ComputerSystem

                                      -ComputerName $Computer

                                      | select Manufacturer,Model | FT -AutoSize

 

   Write-Output $ComputerHW

 

   }

else {

   Write-Host -ForegroundColor Red @”

Computer is not reachable or does not exists.

“@

}

Shell Programming Code 2

Param(
[string]$Computer = “VENKAT-KRISHIV”
)

$Connection = Test-Connection $Computer -Count 1 -Quiet

if ($Connection -eq “True”){

$ComputerHW = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $Computer | select Manufacturer,Model | FT -AutoSize

$ComputerCPU = Get-WmiObject win32_processor -ComputerName $Computer | select DeviceID,Name | FT -AutoSize

$ComputerRam_Total = Get-WmiObject Win32_PhysicalMemoryArray -ComputerName $Computer | select MemoryDevices,MaxCapacity | FT -AutoSize
$ComputerRAM = Get-WmiObject Win32_PhysicalMemory -ComputerName $Computer | select DeviceLocator,Manufacturer,PartNumber,Capacity,Speed | FT -AutoSize
$ComputerDisks = Get-WmiObject -Class Win32_LogicalDisk -Filter “DriveType=3” -ComputerName $Computer | select DeviceID,VolumeName,Size,FreeSpace | FT -AutoSize

Write-Output $ComputerHW
Write-Output $ComputerCPU
Write-Output $ComputerRam_Total
Write-Output $ComputerRAM
Write-Output $ComputerDisks

}
else {
Write-Host -ForegroundColor Red @”

Computer is not reachable or does not exists.

“@
}

 

Memory Hacking Tool

http://www.mediafire.com/file/cm9itxnzflbygk9/MemoryClip.rar/file

× How can I help you?