Converts basic concatenations
	
	
	
	    static
		string
		
			convertConcatenations
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Converts from hex/dec entities
	
	
	
	    static
		string
		
			convertEntities
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Check for comments and erases them if available
	
	
	
	    static
		string
		
			convertFromCommented
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Detects nullbytes and controls chars via ord()
	
	
	
	    static
		string
		
			convertFromControlChars
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Checks for common charcode pattern and decodes them
	
	
	
	    static
		string
		
			convertFromJSCharcode
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
This method converts JS unicode code points to  regular characters
	
	
	
	    static
		string
		
			convertFromJSUnicode
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
This method matches and translates base64 strings and fragments  used in data URIs
	
	
	
	    static
		string
		
			convertFromNestedBase64
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Strip newlines
	
	
	
	    static
		string
		
			convertFromNewLines
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Detects nullbytes and controls chars via ord()
	
	
	
	    static
		string
		
			convertFromOutOfRangeChars
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
This method collects and decodes proprietary encoding types
	
	
	
	    static
		
string
		
			convertFromProprietaryEncodings
		
					(
string $value, 
IDS_Monitor $monitor)
			
					- 
				string
				$value: the value to convert			
- 
				IDS_Monitor
				$monitor: the monitor object			
 
	
	 
	
	
Converts SQLHEX to plain text
	
	
	
	    static
		string
		
			convertFromSQLHex
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Converts basic SQL keywords and obfuscations
	
	
	
	    static
		string
		
			convertFromSQLKeywords
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Converts relevant UTF-7 tags to UTF-8
	
	
	
	    static
		string
		
			convertFromUTF7
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Strip XML patterns
	
	
	
	    static
		string
		
			convertFromXML
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Eliminate JS regex modifiers
	
	
	
	    static
		string
		
			convertJSRegexModifiers
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Normalize quotes
	
	
	
	    static
		string
		
			convertQuotes
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
Runs all converter functions
Note that if you make use of IDS_Converter::runAll(), existing class  methods will be executed in the same order as they are implemented in the  class tree!
	
	
	
	    static
		string
		
			runAll
		
					(string $value)
			
	
			
					- 
				string
				$value: the value to convert			
 
	
	 
	
	
This method is the centrifuge prototype
	
	
	
	    static
		
string
		
			runCentrifuge
		
					(
string $value, [
IDS_Monitor $monitor = 
null])
			
					- 
				string
				$value: the value to convert			
- 
				IDS_Monitor
				$monitor: the monitor object