No One Can Stop Me Now

This commit is contained in:
DigiJ
2026-03-13 23:48:47 -07:00
parent 4d3570781e
commit 1a138a2bd0
428 changed files with 519668 additions and 259 deletions

1450
installer/Files.wxs Normal file

File diff suppressed because it is too large Load Diff

78
installer/Package.wxs Normal file
View File

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package
Name="AUTARCH"
Manufacturer="darkHal Security Group &amp; Setec Security Labs"
Version="1.3.0.0"
UpgradeCode="A07C3F1E-8D2B-4E5A-9F6C-1B3D5E7A9C0F"
Scope="perMachine"
InstallerVersion="500">
<MajorUpgrade
DowngradeErrorMessage="A newer version of AUTARCH is already installed." />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
<Icon Id="autarch.ico" SourceFile="$(var.DistDir)\_internal\autarch.ico" />
<Property Id="ARPPRODUCTICON" Value="autarch.ico" />
<Property Id="ARPHELPLINK" Value="https://github.com/darkhal/autarch" />
<!-- License -->
<WixVariable Id="WixUILicenseRtf" Value="license.rtf" />
<!-- Install directory -->
<StandardDirectory Id="ProgramFiles6432Folder">
<Directory Id="INSTALLFOLDER" Name="AUTARCH" />
</StandardDirectory>
<!-- Desktop shortcut directory -->
<StandardDirectory Id="DesktopFolder" />
<!-- Start menu -->
<StandardDirectory Id="ProgramMenuFolder">
<Directory Id="ProgramMenuDir" Name="AUTARCH" />
</StandardDirectory>
<!-- Main feature -->
<Feature Id="Main" Title="AUTARCH" Level="1">
<ComponentGroupRef Id="AutarchFiles" />
<ComponentRef Id="Shortcuts" />
<ComponentRef Id="DesktopShortcut" />
</Feature>
<!-- Shortcuts -->
<Component Id="Shortcuts" Directory="ProgramMenuDir" Guid="B17C4F2E-9A3D-4E6B-8C1F-2D4E6A8B0C3E">
<Shortcut Id="WebDashboardShortcut"
Name="AUTARCH Web Dashboard"
Target="[INSTALLFOLDER]autarch_web.exe"
WorkingDirectory="INSTALLFOLDER"
Icon="autarch.ico" />
<Shortcut Id="CLIShortcut"
Name="AUTARCH CLI"
Target="[INSTALLFOLDER]autarch.exe"
WorkingDirectory="INSTALLFOLDER"
Icon="autarch.ico" />
<Shortcut Id="UninstallShortcut"
Name="Uninstall AUTARCH"
Target="[SystemFolder]msiexec.exe"
Arguments="/x [ProductCode]" />
<RemoveFolder Id="RemoveProgramMenuDir" On="uninstall" />
<RegistryValue Root="HKCU" Key="Software\AUTARCH" Name="StartMenuInstalled" Type="integer" Value="1" KeyPath="yes" />
</Component>
<Component Id="DesktopShortcut" Directory="DesktopFolder" Guid="C28D5F3E-0B4E-4F7C-9D2A-3E5F7B9D1E4A">
<Shortcut Id="DesktopWebShortcut"
Name="AUTARCH"
Target="[INSTALLFOLDER]autarch_web.exe"
WorkingDirectory="INSTALLFOLDER"
Icon="autarch.ico" />
<RegistryValue Root="HKCU" Key="Software\AUTARCH" Name="DesktopInstalled" Type="integer" Value="1" KeyPath="yes" />
</Component>
<!-- UI -->
<ui:WixUI Id="WixUI_InstallDir" InstallDirectory="INSTALLFOLDER"
xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui" />
</Package>
</Wix>

27
installer/license.rtf Normal file
View File

@@ -0,0 +1,27 @@
{\rtf1\ansi\deff0
{\fonttbl{\f0\fswiss Segoe UI;}}
\viewkind4\uc1
\pard\f0\fs20
\b AUTARCH License Agreement\b0\par
\par
Copyright (c) 2026 darkHal Security Group & Setec Security Labs\par
\par
\b FREE FOR DEFENDERS.\b0\par
\par
This software is provided free of charge for individual security researchers, penetration testers, and defensive security professionals.\par
\par
\b COMMERCIAL USE:\b0 Commercial entities, corporations, and government agencies require a commercial license. Contact the authors for licensing terms.\par
\par
\b RESTRICTIONS:\b0\par
\par
1. You may not use this software for unauthorized access to systems you do not own or have explicit permission to test.\par
\par
2. You may not redistribute modified versions without attribution.\par
\par
3. Government use is restricted to authorized self-testing only.\par
\par
\b DISCLAIMER:\b0 This software is provided "AS IS" without warranty of any kind. The authors are not responsible for misuse of this software. Users accept full responsibility for compliance with applicable laws.\par
\par
By installing this software, you agree to these terms.\par
}