Updated PortScan Plugin (markdown)

Tib3rius 2021-08-29 23:14:11 -04:00
parent ba415dfe0d
commit 0790a723c6
1 changed files with 1 additions and 1 deletions

@ -46,7 +46,7 @@ class QuickTCPPortScan(PortScan):
self.priority = 0
```
Each plugin is defined as a class. If you are familiar with object-oriented programming, you'll understand this. If not, just know that a class name ("QuickTCPPortScan" in this case) has to be unique. The parentheses after the classname tell AutoRecon that this is a PortScan plugin.
Each plugin is defined as a class. If you are familiar with object-oriented programming, you'll understand this. If not, just know that a class name ("QuickTCPPortScan" in this case) has to be unique. The parentheses after the class name tell AutoRecon that this is a PortScan plugin.
Every plugin has a number of methods / functions that it must define. The first is the __init__ method, which must call `super().__init__()` before anything else.