Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Scylla Launcher

Featured Replies

Posted

Hi,

For personal use I created a small launcher program that allows you to quickly select if you want to start Scylla_x86.exe or Scylla_x64.exe. This was useful in my case because I assign hotkeys to tools, which means that I should've assigned two hotkeys to scylla instead of one.

Program+sources attached, please consider adding it to the official release, maybe more people have benefit from it.

Screenshot:

scylla_launcher.png

Greetings,

Mr. eXoDia

Scylla_Launcher.rar

Edited by Mr. eXoDia

I think you should use IsWow64Process function to determines whether the specified process is running under x86 or x64 and so on, you only need a button to launcher Scylla_x86.exe or Scylla_x64.exe. So It would be neat.


Thanks, this is a really nice idea.


 


I added a windows check: the x64 button is disabled if you cant execute it.



BOOL isWindows64()
{
_GetNativeSystemInfo = (def_GetNativeSystemInfo)GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetNativeSystemInfo");
if (_GetNativeSystemInfo)
{
_GetNativeSystemInfo(&sysi);
}
else
{
GetSystemInfo(&sysi);
} if (sysi.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
{
return TRUE;
}
else
{
return FALSE;
}
} BOOL CALLBACK DlgMain(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
case WM_INITDIALOG:
{
SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)LoadIcon(hInst, MAKEINTRESOURCE(IDI_ICON1))); if (!isWindows64())
{
EnableWindow(GetDlgItem(hwndDlg, IDC_BTN_X64), FALSE);
}
}

 


@vic4key


I think this is too complicated and not really comfortable, because you must first select the correct process.


ScyllaLauncher_v2.rar

I dont think so. This is an example. This code is an example, its a function in source code of my tool for game online hacking. Its using IsWow64Process function, very easy to use, you can look it:


 



BOOL Initialize()
{
if (!IsWow64Process(GetCurrentProcess(),&IsWOW64))
return 0;
if (IsWOW64)
{
if (!ExtractResource(GetModuleHandleA("Test.exe"),MAKEINTRESOURCE(IDR_DEVICE641),"DEVICE64",LDEV))
return 0;
}
else
{
if (!ExtractResource(GetModuleHandleA("Test.exe"),MAKEINTRESOURCE(IDR_DEVICE321),"DEVICE32",LDEV))
return 0;
}
// Load L-Dev Driver
char RUNCOMMAND[MAX_PATH];
strcpy(RUNCOMMAND," -f ");
strcat(RUNCOMMAND,LDEV);
ShellExecuteA(0,NULL,ATSIV,RUNCOMMAND,NULL,1);
return 1;
}

Edited by vic4key

  • Author

@vic4key: your idea is good, but in practice it's not useful when you want to unpack an x86 process in WOW64.

@Scylla: glad you liked the idea :)

Greetings

Yeah I know, but it only is a simple idea for launching x86/x64 application. We can use the current process (Launcher) to determines whether the specified process is running under x86 or x64, thereby determining to run x86 or x64 file.


But your code will not run on Windows 2000/Windows XP SP0-1/Windows Server 2003 SP0, and some more I guess.


 


It is a really bad way to determine a windows 64. Look at my source code example...


Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.