Index: /umitCore/Diff.py
===================================================================
--- /umitCore/Diff.py (revision 3)
+++ /umitCore/Diff.py (revision 3)
@@ -0,0 +1,16 @@
+import sys
+import difflib
+
+class Diff:
+	
+	def __init__ (self):
+		pass
+	
+	def generate (self):
+		pass
+	
+	def save (self):
+		pass
+	
+	def open (self):
+		pass
Index: /umitCore/ScanServices.py
===================================================================
--- /umitCore/ScanServices.py (revision 3)
+++ /umitCore/ScanServices.py (revision 3)
@@ -0,0 +1,21 @@
+import sys
+
+class ScanServices:
+	
+	def __init__ (self):
+		pass
+	
+	def scan_web_servers (self):
+		pass
+	
+	def scan_email_servers (self):
+		pass
+	
+	def scan_ftp_servers (self):
+		pass
+	
+	def scan_ssh_servers (self):
+		pass
+	
+	def scan_servers (self, port_list=[]):
+		pass
Index: /umitCore/NmapCommand.py
===================================================================
--- /umitCore/NmapCommand.py (revision 3)
+++ /umitCore/NmapCommand.py (revision 3)
@@ -0,0 +1,14 @@
+import sys
+
+class NmapCommand:
+	def __init__ (self):
+		pass
+	
+	def execute_command (self, command):
+		pass
+	
+	def verify_options (self, options):
+		pass
+	
+	def verify_sintax (self, command):
+		pass
Index: /umitCore/SearchByRegex.py
===================================================================
--- /umitCore/SearchByRegex.py (revision 3)
+++ /umitCore/SearchByRegex.py (revision 3)
@@ -0,0 +1,11 @@
+import sys
+from SearchResult import SearchResult
+
+class SearchByRegex (SearchResult):
+	
+	def __init__ (self):
+		pass
+	
+	def search (self):
+		pass
+	
Index: /umitCore/DiffHtml.py
===================================================================
--- /umitCore/DiffHtml.py (revision 3)
+++ /umitCore/DiffHtml.py (revision 3)
@@ -0,0 +1,16 @@
+import sys
+from Diff import Diff
+
+class DiffHtml (Diff):
+	
+	def __init__ (self):
+		pass
+	
+	def generate (self):
+		pass
+	
+	def open (self):
+		pass
+	
+	def add_umit_style (self):
+		pass
Index: /umitCore/DiffText.py
===================================================================
--- /umitCore/DiffText.py (revision 3)
+++ /umitCore/DiffText.py (revision 3)
@@ -0,0 +1,16 @@
+import sys
+from Diff import Diff
+
+class DiffText (Diff):
+	
+	def __init__ (self):
+		pass
+	
+	def generate (self):
+		pass
+	
+	def save (self):
+		pass
+	
+	def open (self):
+		pass
Index: /umitCore/SearchByPattern.py
===================================================================
--- /umitCore/SearchByPattern.py (revision 3)
+++ /umitCore/SearchByPattern.py (revision 3)
@@ -0,0 +1,13 @@
+import sys
+from SearchResult import SearchResult
+
+class SearchByPattern (SearchResult):
+	
+	def __init__ (self):
+		pass
+	
+	def search (self):
+		pass
+	
+	def get_result (self):
+		pass
Index: /umitCore/Profile.py
===================================================================
--- /umitCore/Profile.py (revision 3)
+++ /umitCore/Profile.py (revision 3)
@@ -0,0 +1,31 @@
+import sys
+from ConfigParser import ConfigParser
+
+class Profile:
+	
+	def __init__ (self, profile):
+		self.config = ConfigParser ()
+		self.config.readfp (open(profile))
+		
+		print self.config.sections()
+	
+	def save (self):
+		pass
+	
+	def open (self):
+		pass
+	
+	def get_command (self):
+		pass
+	
+	def get_hint (self):
+		pass
+	
+	def get_description (self):
+		pass
+	
+	def get_annotation (self):
+		pass
+
+if __name__ == '__main__':
+	p = Profile ('scan_profile.usp')
Index: /umitCore/VulnerabilityLevel.py
===================================================================
--- /umitCore/VulnerabilityLevel.py (revision 3)
+++ /umitCore/VulnerabilityLevel.py (revision 3)
@@ -0,0 +1,24 @@
+import sys
+
+class VulnerabilityLevel:
+	
+	def __init__ (self):
+		pass
+	
+	def get_ports_openned (self):
+		pass
+	
+	def get_ports_filtered (self):
+		pass
+	
+	def set_ports_openned (self, ports=[]):
+		pass
+	
+	def set_ports_filtered (self, ports=[]):
+		pass
+	
+	def get_vulnerability_level (self):
+		pass
+	
+	def refresh_vulnerability_level (self):
+		pass
Index: /umitCore/ScanResult.py
===================================================================
--- /umitCore/ScanResult.py (revision 3)
+++ /umitCore/ScanResult.py (revision 3)
@@ -0,0 +1,42 @@
+import sys
+
+class ScanResult:
+	
+	def __init__ (self):
+		pass
+	
+	def save_text (self):
+		pass
+	
+	def save_xml (self):
+		pass
+	
+	def save_html (self):
+		pass
+	
+	def open_text (self):
+		pass
+	
+	def open_xml (self):
+		pass
+	
+	def open_html (self):
+		pass
+	
+	def get_command (self):
+		pass
+	
+	def set_command (self):
+		pass
+	
+	def get_datetime (self):
+		pass
+	
+	def set_datetime (self):
+		pass
+	
+	def get_duration (self):
+		pass
+	
+	def set_duration (self):
+		pass
Index: /umitCore/scan_profile.usp
===================================================================
--- /umitCore/scan_profile.usp (revision 3)
+++ /umitCore/scan_profile.usp (revision 3)
@@ -0,0 +1,5 @@
+[Global Red]
+command = "nmap -sO 10.1.1.254"
+hint = "Global Red Server"
+description = "Thats the Global Red main Server"
+annotation = "Bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bl"
Index: /umitCore/SearchResult.py
===================================================================
--- /umitCore/SearchResult.py (revision 3)
+++ /umitCore/SearchResult.py (revision 3)
@@ -0,0 +1,10 @@
+import sys
+
+class SearchResult:
+	
+	def __init__ (self):
+		pass
+	
+	def search (self):
+		pass
+	
