mirror of
https://github.com/oXis/pwnwiki.github.io.git
synced 2025-10-29 16:56:59 +00:00
Add firewall control details, and diag output
Added a section which shows how to enable/disable the firewall on Windows Vista+. Added WinXP SP3 output to the diag command. Updated some references in the index, added myself as a curator.
This commit is contained in:
parent
0b063a4066
commit
1c4eb8ebee
5
index.md
5
index.md
@ -12,7 +12,7 @@ You can find a copy of the project online at: http://mubix.github.io/post-exploi
|
|||||||
|
|
||||||
### Offline Use:
|
### Offline Use:
|
||||||
|
|
||||||
1. Clone the repository or pull the archive ([download zip](https://github.com/mubix/post-exploitation-wiki/archive/master.zip)) of the repo
|
1. Clone the repository or pull the archive ([download zip](https://github.com/pwnwiki/pwnwiki.github.cio/archive/master.zip)) of the repo
|
||||||
2. Open index.html
|
2. Open index.html
|
||||||
3. Most modern browsers don't allow the access of local files from a locally loaded HTML file. On Windows you can use [Mongoose Tiny](http://cesanta.com/downloads.html) or [HFS](http://www.rejetto.com/hfs/) to host the files locally. On OSX and Linux `python -m SimpleHTTPServer` seems to work just fine.
|
3. Most modern browsers don't allow the access of local files from a locally loaded HTML file. On Windows you can use [Mongoose Tiny](http://cesanta.com/downloads.html) or [HFS](http://www.rejetto.com/hfs/) to host the files locally. On OSX and Linux `python -m SimpleHTTPServer` seems to work just fine.
|
||||||
|
|
||||||
@ -30,7 +30,8 @@ Curators:
|
|||||||
* [@WebBreacher](https://twitter.com/webbreacher) [gimmick:TwitterFollow](@WebBreacher)
|
* [@WebBreacher](https://twitter.com/webbreacher) [gimmick:TwitterFollow](@WebBreacher)
|
||||||
* [@tekwizz123](https://twitter.com/tekwizz123) [gimmick:TwitterFollow](@tekwizz123)
|
* [@tekwizz123](https://twitter.com/tekwizz123) [gimmick:TwitterFollow](@tekwizz123)
|
||||||
* [@jakx_](https://twitter.com/jakx_) [gimmick:TwitterFollow](@jakx_)
|
* [@jakx_](https://twitter.com/jakx_) [gimmick:TwitterFollow](@jakx_)
|
||||||
|
* [@TheColonial](https://twitter.com/TheColonial) [gimmick:TwitterFollow](@TheColonial)
|
||||||
|
|
||||||
If you would like to become a curator, please contact [mubix@hak5.org](mailto:mubix@hak5.org)
|
If you would like to become a curator, please contact [mubix@hak5.org](mailto:mubix@hak5.org)
|
||||||
|
|
||||||
[gimmick:ForkMeOnGitHub ({ color: 'red', position: 'right' })](http://www.github.com/mubix/post-exploitation-wiki/)
|
[gimmick:ForkMeOnGitHub ({ color: 'red', position: 'right' })](http://www.github.com/pwnwiki/pwnwiki.github.io/)
|
||||||
|
|||||||
@ -222,8 +222,8 @@ User profile
|
|||||||
Home directory
|
Home directory
|
||||||
Last logon 10/15/2013 6:53:42 PM<br>
|
Last logon 10/15/2013 6:53:42 PM<br>
|
||||||
Logon hours allowed All<br>
|
Logon hours allowed All<br>
|
||||||
Local Group Memberships *Administrators *Users
|
Local Group Memberships \*Administrators \*Users
|
||||||
Global Group memberships *Domain Users
|
Global Group memberships \*Domain Users
|
||||||
The command completed successfully.</code></div>
|
The command completed successfully.</code></div>
|
||||||
|
|
||||||
----
|
----
|
||||||
@ -234,11 +234,68 @@ For more information: http://technet.microsoft.com/en-us/library/bb490939.aspx
|
|||||||
### Network Services
|
### Network Services
|
||||||
* **Command with arguments**: `netsh diag show all`
|
* **Command with arguments**: `netsh diag show all`
|
||||||
* **Description**: Shows information on network services and adapters.
|
* **Description**: Shows information on network services and adapters.
|
||||||
|
* **Note**: Windows XP only.
|
||||||
Note: Windows XP only.
|
|
||||||
|
|
||||||
* **Output**:
|
* **Output**:
|
||||||
* (Coming soon!)
|
* <div class="slide" style="cursor: pointer;"> **Windows XP SP3:** Show/Hide </div><div class="view"><code>C:\Users\johndoe>netsh diag show all
|
||||||
|
|
||||||
|
Default Outlook Express Mail (Not Configured)
|
||||||
|
|
||||||
|
Default Outlook Express News (Not Configured)
|
||||||
|
|
||||||
|
Internet Explorer Web Proxy (Not Configured)
|
||||||
|
|
||||||
|
Loopback (127.0.0.1)
|
||||||
|
|
||||||
|
Computer System (OJ-75E3B8CC9475)
|
||||||
|
|
||||||
|
Operating System (Microsoft Windows XP Professional)
|
||||||
|
|
||||||
|
Version (5.1.2600)
|
||||||
|
|
||||||
|
Modems
|
||||||
|
|
||||||
|
Network Adapters
|
||||||
|
1. [00000001] VMware Accelerated AMD PCNet Adapter
|
||||||
|
2. [00000010] VMware Accelerated AMD PCNet Adapter
|
||||||
|
|
||||||
|
Network Clients
|
||||||
|
1. VMware Shared Folders
|
||||||
|
2. Microsoft Terminal Services
|
||||||
|
3. Microsoft Windows Network
|
||||||
|
4. Web Client Network</code></div>
|
||||||
|
|
||||||
|
### Firewall Control
|
||||||
|
* **Command with arguments**: `netsh firewall set opmode [disable|enable]`
|
||||||
|
* **Description**: Enable or disable the Windows Firewall (requires admin privileges).
|
||||||
|
* **Minimum required version**: Windows Vista.
|
||||||
|
* **Output**:
|
||||||
|
* <div class="slide" style="cursor: pointer;"> **Windows Vista:** Show/Hide </div><div class="view"><code>C:\Users\johndoe>netsh firewall set opmode enable
|
||||||
|
Ok.
|
||||||
|
|
||||||
|
C:\Users\johndoe>netsh firewall set opmode disable
|
||||||
|
Ok.</code></div>
|
||||||
|
* <div class="slide" style="cursor: pointer;"> **Windows 7:** Show/Hide </div><div class="view"><code>C:\Users\johndoe>netsh firewall set opmode enable
|
||||||
|
|
||||||
|
IMPORTANT: Command executed successfully.
|
||||||
|
However, "netsh firewall" is deprecated;
|
||||||
|
use "netsh advfirewall firewall" instead.
|
||||||
|
For more information on using "netsh advfirewall firewall" commands
|
||||||
|
instead of "netsh firewall", see KB article 947709
|
||||||
|
at http://go.microsoft.com/fwlink/?linkid=121488 .
|
||||||
|
|
||||||
|
Ok.
|
||||||
|
|
||||||
|
C:\Users\johndoe>netsh firewall set opmode disable
|
||||||
|
|
||||||
|
IMPORTANT: Command executed successfully.
|
||||||
|
However, "netsh firewall" is deprecated;
|
||||||
|
use "netsh advfirewall firewall" instead.
|
||||||
|
For more information on using "netsh advfirewall firewall" commands
|
||||||
|
instead of "netsh firewall", see KB article 947709
|
||||||
|
at http://go.microsoft.com/fwlink/?linkid=121488 .
|
||||||
|
|
||||||
|
Ok.</code></div>
|
||||||
|
|
||||||
### Wireless Backdoor Creation
|
### Wireless Backdoor Creation
|
||||||
* **Command with arguments**:
|
* **Command with arguments**:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user