Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Mac /
PythonLauncher /
Delete
Unzip
Name
Size
Permission
Date
Action
English.lproj
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
FileSettings.h
1.85
KB
-rw-r--r--
2024-03-19 22:46
FileSettings.m
9.44
KB
-rw-r--r--
2024-03-19 22:46
Info.plist.in
2.06
KB
-rw-r--r--
2024-03-19 22:46
Makefile.in
2.85
KB
-rw-r--r--
2024-03-19 22:46
MyAppDelegate.h
290
B
-rw-r--r--
2024-03-19 22:46
MyAppDelegate.m
2.63
KB
-rw-r--r--
2024-03-19 22:46
MyDocument.h
958
B
-rw-r--r--
2024-03-19 22:46
MyDocument.m
4.54
KB
-rw-r--r--
2024-03-19 22:46
PreferencesWindowController.h
1.02
KB
-rw-r--r--
2024-03-19 22:46
PreferencesWindowController.m
2.93
KB
-rw-r--r--
2024-03-19 22:46
doscript.h
228
B
-rw-r--r--
2024-03-19 22:46
doscript.m
1.68
KB
-rw-r--r--
2024-03-19 22:46
factorySettings.plist
2.63
KB
-rw-r--r--
2024-03-19 22:46
main.m
340
B
-rw-r--r--
2024-03-19 22:46
Save
Rename
/* * doscript.c * PythonLauncher * * Created by Jack Jansen on Wed Jul 31 2002. * Copyright (c) 2002 __MyCompanyName__. All rights reserved. * */ #import <Cocoa/Cocoa.h> #import <ApplicationServices/ApplicationServices.h> #import "doscript.h" extern int doscript(const char *command) { char *bundleID = "com.apple.Terminal"; AppleEvent evt, res; AEDesc desc; OSStatus err; [[NSWorkspace sharedWorkspace] launchApplication:@"Terminal.app"]; // Build event err = AEBuildAppleEvent(kAECoreSuite, kAEDoScript, typeApplicationBundleID, bundleID, strlen(bundleID), kAutoGenerateReturnID, kAnyTransactionID, &evt, NULL, "'----':utf8(@)", strlen(command), command); if (err) { NSLog(@"AEBuildAppleEvent failed: %ld\n", (long)err); return err; } // Send event and check for any Apple Event Manager errors err = AESendMessage(&evt, &res, kAEWaitReply, kAEDefaultTimeout); AEDisposeDesc(&evt); if (err) { NSLog(@"AESendMessage failed: %ld\n", (long)err); return err; } // Check for any application errors err = AEGetParamDesc(&res, keyErrorNumber, typeSInt32, &desc); AEDisposeDesc(&res); if (!err) { AEGetDescData(&desc, &err, sizeof(err)); NSLog(@"Terminal returned an error: %ld", (long)err); AEDisposeDesc(&desc); } else if (err == errAEDescNotFound) { err = noErr; } else { NSLog(@"AEGetPArmDesc returned an error: %ld", (long)err); } return err; }