├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── linux-bug-report.md │ └── windows-bug-report.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .idea └── .idea.Titan │ ├── .idea │ ├── codeStyleSettings.xml │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── contentModel.xml │ ├── discord.xml │ ├── encodings.xml │ ├── indexLayout.xml │ ├── markdown-exported-files.xml │ ├── markdown-navigator.xml │ ├── markdown-navigator │ │ └── profiles_settings.xml │ ├── modules.xml │ └── vcs.xml │ └── riderModule.iml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── Titan.sln ├── Titan ├── Account │ ├── Impl │ │ ├── PrimitiveFreeGamesRequestHandler.cs │ │ ├── ProtectedAccount.cs │ │ └── UnprotectedAccount.cs │ ├── Result.cs │ ├── TitanAccount.cs │ └── TitanHandler.cs ├── Bootstrap │ ├── Options.cs │ └── Verbs │ │ ├── CommendOptions.cs │ │ └── ReportOptions.cs ├── Config │ └── Config.cs ├── FodyWeavers.xml ├── Import │ ├── AccountImporter.cs │ └── Impl │ │ └── GenericAccountListImporter.cs ├── Json │ ├── JsonAccounts.cs │ ├── JsonIndex.cs │ └── Victims.cs ├── Logging │ ├── LogCreator.cs │ ├── TitanListener.cs │ └── VictimTracker.cs ├── Managers │ ├── AccountManager.cs │ └── ThreadManager.cs ├── MatchID │ ├── Live │ │ └── MatchInfo.cs │ └── Sharecode │ │ ├── ShareCode.cs │ │ └── ShareCodeInfo.cs ├── Meta │ ├── BanInfo.cs │ ├── CommendInfo.cs │ ├── LiveGameInfo.cs │ ├── ReportInfo.cs │ └── TitanPayloadInfo.cs ├── Native │ └── Linux.cs ├── Proof │ └── ProfileSaver.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── About.png │ ├── CREDIT.txt │ ├── Form.png │ ├── Logo.ico │ ├── Logo.png │ └── Notification.png ├── Restrictions │ └── Blacklist.cs ├── Sentry │ ├── LoginKey.cs │ ├── Sentry.cs │ └── SharedSecret.cs ├── Titan.cs ├── Titan.csproj ├── UI │ ├── 2FA │ │ └── 2FAForm.cs │ ├── APIKey │ │ └── SWAKeyForm.cs │ ├── About │ │ └── AboutUI.cs │ ├── General │ │ ├── GeneralUI.cs │ │ ├── Tab.cs │ │ └── Tabs │ │ │ ├── AccountsTab.cs │ │ │ ├── CommendTab.cs │ │ │ └── ReportTab.cs │ ├── SharedResources.cs │ ├── UIManager.cs │ └── UIType.cs ├── Util │ ├── ArrayUtil.cs │ ├── Cooldown.cs │ ├── CooldownUtil.cs │ ├── ExitCodes.cs │ ├── GameUtil.cs │ ├── ListUtil.cs │ ├── ObjectCloner.cs │ ├── RandomUtil.cs │ ├── SharecodeUtil.cs │ ├── SteamUtil.cs │ ├── StringUtil.cs │ ├── ThreadTimeout.cs │ └── UnixEpoch.cs ├── Web │ ├── KeyManager.cs │ └── SWAHandle.cs ├── accounts.json ├── app.config └── packages.config ├── TitanTest ├── BanManagerTest.cs ├── ProfileSaverTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ShareCodeDecoderTest.cs ├── SteamUtilTest.cs ├── ThreadTimeoutTest.cs ├── TitanTest.csproj ├── app.config └── packages.config ├── appveyor.yml ├── convert.py ├── docs ├── CNAME └── index.html ├── man ├── Titan.1 └── Titan.1.ronn ├── pkg ├── PKGBUILD ├── Titan.desktop ├── Titan.install └── titan └── tools ├── NetHook2 ├── NetHook2.dll ├── NetHookAnalyzer2.exe └── README.md └── packages.config /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/linux-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.github/ISSUE_TEMPLATE/linux-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/windows-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.github/ISSUE_TEMPLATE/windows-bug-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/contentModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/contentModel.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/markdown-exported-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/markdown-exported-files.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.Titan/riderModule.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/.idea/.idea.Titan/riderModule.iml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/README.md -------------------------------------------------------------------------------- /Titan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan.sln -------------------------------------------------------------------------------- /Titan/Account/Impl/PrimitiveFreeGamesRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/Impl/PrimitiveFreeGamesRequestHandler.cs -------------------------------------------------------------------------------- /Titan/Account/Impl/ProtectedAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/Impl/ProtectedAccount.cs -------------------------------------------------------------------------------- /Titan/Account/Impl/UnprotectedAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/Impl/UnprotectedAccount.cs -------------------------------------------------------------------------------- /Titan/Account/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/Result.cs -------------------------------------------------------------------------------- /Titan/Account/TitanAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/TitanAccount.cs -------------------------------------------------------------------------------- /Titan/Account/TitanHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Account/TitanHandler.cs -------------------------------------------------------------------------------- /Titan/Bootstrap/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Bootstrap/Options.cs -------------------------------------------------------------------------------- /Titan/Bootstrap/Verbs/CommendOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Bootstrap/Verbs/CommendOptions.cs -------------------------------------------------------------------------------- /Titan/Bootstrap/Verbs/ReportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Bootstrap/Verbs/ReportOptions.cs -------------------------------------------------------------------------------- /Titan/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Config/Config.cs -------------------------------------------------------------------------------- /Titan/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/FodyWeavers.xml -------------------------------------------------------------------------------- /Titan/Import/AccountImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Import/AccountImporter.cs -------------------------------------------------------------------------------- /Titan/Import/Impl/GenericAccountListImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Import/Impl/GenericAccountListImporter.cs -------------------------------------------------------------------------------- /Titan/Json/JsonAccounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Json/JsonAccounts.cs -------------------------------------------------------------------------------- /Titan/Json/JsonIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Json/JsonIndex.cs -------------------------------------------------------------------------------- /Titan/Json/Victims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Json/Victims.cs -------------------------------------------------------------------------------- /Titan/Logging/LogCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Logging/LogCreator.cs -------------------------------------------------------------------------------- /Titan/Logging/TitanListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Logging/TitanListener.cs -------------------------------------------------------------------------------- /Titan/Logging/VictimTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Logging/VictimTracker.cs -------------------------------------------------------------------------------- /Titan/Managers/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Managers/AccountManager.cs -------------------------------------------------------------------------------- /Titan/Managers/ThreadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Managers/ThreadManager.cs -------------------------------------------------------------------------------- /Titan/MatchID/Live/MatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/MatchID/Live/MatchInfo.cs -------------------------------------------------------------------------------- /Titan/MatchID/Sharecode/ShareCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/MatchID/Sharecode/ShareCode.cs -------------------------------------------------------------------------------- /Titan/MatchID/Sharecode/ShareCodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/MatchID/Sharecode/ShareCodeInfo.cs -------------------------------------------------------------------------------- /Titan/Meta/BanInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Meta/BanInfo.cs -------------------------------------------------------------------------------- /Titan/Meta/CommendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Meta/CommendInfo.cs -------------------------------------------------------------------------------- /Titan/Meta/LiveGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Meta/LiveGameInfo.cs -------------------------------------------------------------------------------- /Titan/Meta/ReportInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Meta/ReportInfo.cs -------------------------------------------------------------------------------- /Titan/Meta/TitanPayloadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Meta/TitanPayloadInfo.cs -------------------------------------------------------------------------------- /Titan/Native/Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Native/Linux.cs -------------------------------------------------------------------------------- /Titan/Proof/ProfileSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Proof/ProfileSaver.cs -------------------------------------------------------------------------------- /Titan/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Titan/Resources/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/About.png -------------------------------------------------------------------------------- /Titan/Resources/CREDIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/CREDIT.txt -------------------------------------------------------------------------------- /Titan/Resources/Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/Form.png -------------------------------------------------------------------------------- /Titan/Resources/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/Logo.ico -------------------------------------------------------------------------------- /Titan/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/Logo.png -------------------------------------------------------------------------------- /Titan/Resources/Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Resources/Notification.png -------------------------------------------------------------------------------- /Titan/Restrictions/Blacklist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Restrictions/Blacklist.cs -------------------------------------------------------------------------------- /Titan/Sentry/LoginKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Sentry/LoginKey.cs -------------------------------------------------------------------------------- /Titan/Sentry/Sentry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Sentry/Sentry.cs -------------------------------------------------------------------------------- /Titan/Sentry/SharedSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Sentry/SharedSecret.cs -------------------------------------------------------------------------------- /Titan/Titan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Titan.cs -------------------------------------------------------------------------------- /Titan/Titan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Titan.csproj -------------------------------------------------------------------------------- /Titan/UI/2FA/2FAForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/2FA/2FAForm.cs -------------------------------------------------------------------------------- /Titan/UI/APIKey/SWAKeyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/APIKey/SWAKeyForm.cs -------------------------------------------------------------------------------- /Titan/UI/About/AboutUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/About/AboutUI.cs -------------------------------------------------------------------------------- /Titan/UI/General/GeneralUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/General/GeneralUI.cs -------------------------------------------------------------------------------- /Titan/UI/General/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/General/Tab.cs -------------------------------------------------------------------------------- /Titan/UI/General/Tabs/AccountsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/General/Tabs/AccountsTab.cs -------------------------------------------------------------------------------- /Titan/UI/General/Tabs/CommendTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/General/Tabs/CommendTab.cs -------------------------------------------------------------------------------- /Titan/UI/General/Tabs/ReportTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/General/Tabs/ReportTab.cs -------------------------------------------------------------------------------- /Titan/UI/SharedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/SharedResources.cs -------------------------------------------------------------------------------- /Titan/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/UIManager.cs -------------------------------------------------------------------------------- /Titan/UI/UIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/UI/UIType.cs -------------------------------------------------------------------------------- /Titan/Util/ArrayUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/ArrayUtil.cs -------------------------------------------------------------------------------- /Titan/Util/Cooldown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/Cooldown.cs -------------------------------------------------------------------------------- /Titan/Util/CooldownUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/CooldownUtil.cs -------------------------------------------------------------------------------- /Titan/Util/ExitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/ExitCodes.cs -------------------------------------------------------------------------------- /Titan/Util/GameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/GameUtil.cs -------------------------------------------------------------------------------- /Titan/Util/ListUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/ListUtil.cs -------------------------------------------------------------------------------- /Titan/Util/ObjectCloner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/ObjectCloner.cs -------------------------------------------------------------------------------- /Titan/Util/RandomUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/RandomUtil.cs -------------------------------------------------------------------------------- /Titan/Util/SharecodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/SharecodeUtil.cs -------------------------------------------------------------------------------- /Titan/Util/SteamUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/SteamUtil.cs -------------------------------------------------------------------------------- /Titan/Util/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/StringUtil.cs -------------------------------------------------------------------------------- /Titan/Util/ThreadTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/ThreadTimeout.cs -------------------------------------------------------------------------------- /Titan/Util/UnixEpoch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Util/UnixEpoch.cs -------------------------------------------------------------------------------- /Titan/Web/KeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Web/KeyManager.cs -------------------------------------------------------------------------------- /Titan/Web/SWAHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/Web/SWAHandle.cs -------------------------------------------------------------------------------- /Titan/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/accounts.json -------------------------------------------------------------------------------- /Titan/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/app.config -------------------------------------------------------------------------------- /Titan/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/Titan/packages.config -------------------------------------------------------------------------------- /TitanTest/BanManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/BanManagerTest.cs -------------------------------------------------------------------------------- /TitanTest/ProfileSaverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/ProfileSaverTest.cs -------------------------------------------------------------------------------- /TitanTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TitanTest/ShareCodeDecoderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/ShareCodeDecoderTest.cs -------------------------------------------------------------------------------- /TitanTest/SteamUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/SteamUtilTest.cs -------------------------------------------------------------------------------- /TitanTest/ThreadTimeoutTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/ThreadTimeoutTest.cs -------------------------------------------------------------------------------- /TitanTest/TitanTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/TitanTest.csproj -------------------------------------------------------------------------------- /TitanTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/app.config -------------------------------------------------------------------------------- /TitanTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/TitanTest/packages.config -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/appveyor.yml -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/convert.py -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | titan.wontfix.club -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/docs/index.html -------------------------------------------------------------------------------- /man/Titan.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/man/Titan.1 -------------------------------------------------------------------------------- /man/Titan.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/man/Titan.1.ronn -------------------------------------------------------------------------------- /pkg/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/pkg/PKGBUILD -------------------------------------------------------------------------------- /pkg/Titan.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/pkg/Titan.desktop -------------------------------------------------------------------------------- /pkg/Titan.install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/titan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/pkg/titan -------------------------------------------------------------------------------- /tools/NetHook2/NetHook2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/tools/NetHook2/NetHook2.dll -------------------------------------------------------------------------------- /tools/NetHook2/NetHookAnalyzer2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/tools/NetHook2/NetHookAnalyzer2.exe -------------------------------------------------------------------------------- /tools/NetHook2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/tools/NetHook2/README.md -------------------------------------------------------------------------------- /tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mellowagain/Titan/HEAD/tools/packages.config --------------------------------------------------------------------------------