Skip to content

Commit b486ec2

Browse files
committed
V6.1
1 parent 58e4d4c commit b486ec2

File tree

2,197 files changed

+1122811
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,197 files changed

+1122811
-0
lines changed

ApplicationEvents.vb

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Imports Gecko
2+
Imports System.IO
3+
4+
Namespace My
5+
6+
' The following events are available for MyApplication:
7+
'
8+
' Startup: Raised when the application starts, before the startup form is created.
9+
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally.
10+
' UnhandledException: Raised if the application encounters an unhandled exception.
11+
' StartupNextInstance: Raised when launching a single-instance application and the application is already active.
12+
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected.
13+
Partial Friend Class MyApplication
14+
15+
Protected Overrides Function OnStartup(ByVal eventArgs As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs) As Boolean
16+
17+
' set the path to the temp files
18+
Dim ProfileDirectory As String = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) & "\Xenotix\DefaultProfile"
19+
If Not Directory.Exists(ProfileDirectory) Then
20+
Directory.CreateDirectory(ProfileDirectory)
21+
End If
22+
23+
' set the temp-directory for the gecko
24+
Xpcom.ProfileDirectory = ProfileDirectory
25+
26+
' set the path of the directory where the xulrunner files are located
27+
Dim xrPath As String = System.Reflection.Assembly.GetExecutingAssembly.Location
28+
xrPath = xrPath.Substring(0, xrPath.LastIndexOf("\") + 1) & "\xulrunner"
29+
30+
' initialize the path
31+
Xpcom.Initialize(xrPath)
32+
Return True
33+
End Function
34+
35+
End Class
36+
End Namespace

CefSharp.WinForms.dll

167 KB
Binary file not shown.

CefSharp.dll

297 KB
Binary file not shown.

ICSharpCode.SharpZipLib.dll

196 KB
Binary file not shown.

My Project/Application.Designer.vb

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

My Project/Application.myapp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3+
<MySubMain>true</MySubMain>
4+
<MainForm>Spash</MainForm>
5+
<SingleInstance>false</SingleInstance>
6+
<ShutdownMode>0</ShutdownMode>
7+
<EnableVisualStyles>true</EnableVisualStyles>
8+
<AuthenticationMode>0</AuthenticationMode>
9+
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
10+
</MyApplicationData>

My Project/AssemblyInfo.vb

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Imports System
2+
Imports System.Reflection
3+
Imports System.Runtime.InteropServices
4+
5+
' General Information about an assembly is controlled through the following
6+
' set of attributes. Change these attribute values to modify the information
7+
' associated with an assembly.
8+
9+
' Review the values of the assembly attributes
10+
11+
<Assembly: AssemblyTitle("OWASP Xenotix XSS Exploit Framework")>
12+
<Assembly: AssemblyDescription("Advanced XSS Detection and Exploitation Framework")>
13+
<Assembly: AssemblyCompany("OpenSecurity")>
14+
<Assembly: AssemblyProduct("OWASP Xenotix XSS Exploit Framework")>
15+
<Assembly: AssemblyCopyright("Copyright © 2014 Ajin Abraham")>
16+
<Assembly: AssemblyTrademark("Xenotix, OpenSecurity")>
17+
18+
<Assembly: ComVisible(False)>
19+
20+
'The following GUID is for the ID of the typelib if this project is exposed to COM
21+
<Assembly: Guid("4096b092-88de-40ed-a546-6366eda5064b")>
22+
23+
' Version information for an assembly consists of the following four values:
24+
'
25+
' Major Version
26+
' Minor Version
27+
' Build Number
28+
' Revision
29+
'
30+
' You can specify all the values or you can default the Build and Revision Numbers
31+
' by using the '*' as shown below:
32+
' <Assembly: AssemblyVersion("1.0.*")>
33+
34+
<Assembly: AssemblyVersion("6.1.0.0")>
35+
<Assembly: AssemblyFileVersion("6.1.0.0")>

0 commit comments

Comments
 (0)