You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9
+
10
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
12
+
The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission.
13
+
14
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Copy file name to clipboardexpand all lines: README
+14-6
Original file line number
Diff line number
Diff line change
@@ -24,34 +24,42 @@ Get-GPPPassword:
24
24
25
25
Invoke-ReverseDnsLookup:
26
26
27
-
Invoke-ReverseDnsLookup scans an IP address range for DNS PTR records. This script is useful for performing DNS reconnaisance prior to conducting an authorized penetration test.
27
+
Invoke-ReverseDnsLookup scans an IP address range for DNS PTR records. This script is useful for performing DNS reconnaissance prior to conducting an authorized penetration test.
28
28
29
29
----------
30
30
.\PE_Tools
31
31
----------
32
32
33
33
An assortment of scripts used to parse/manipulate Windows portable executables
34
34
35
+
-------
36
+
License
37
+
-------
38
+
39
+
The PowerSploit project and all individual scripts are under the BSD 3-Clause license.
40
+
35
41
-----
36
42
Usage
37
43
-----
38
44
39
-
Refer to the comment-based help in each individual script for usage information.
45
+
The scripts in PowerSploit are not scripts in the traditional sense in that you just execute them at the command line and go. Rather, each script defines a function that can consequently be called at the command line. This method, in my opinion, provides more flexibility with PowerShell. If executing these scripts as traditional scripts ("dot source") becomes necessary, you can always append the command you want to execute after the function definition.
46
+
47
+
Refer to the comment-based help in each individual script for detailed usage information.
40
48
41
49
42
50
------------------
43
51
Script Style Guide
44
52
------------------
45
53
46
-
For all contributers and future contributers to PowerSploit, I ask that you follow this style guide when writing your scripts.
54
+
For all contributors and future contributors to PowerSploit, I ask that you follow this style guide when writing your scripts.
47
55
48
56
* Avoid Write-Host at all costs. You should output custom objects instead. For more information on creating custom objects, read these articles:
0 commit comments