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.41
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 /
BuildScript /
Delete
Unzip
Name
Size
Permission
Date
Action
resources
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
scripts
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
README.rst
5.82
KB
-rw-r--r--
2024-03-19 22:46
build-installer.py
63.33
KB
-rwxr-xr-x
2024-03-19 22:46
seticon.m
598
B
-rw-r--r--
2024-03-19 22:46
tk868_on_10_8_10_9.patch
788
B
-rw-r--r--
2024-03-19 22:46
Save
Rename
/* * Simple tool for setting an icon on a file. */ #import <Cocoa/Cocoa.h> #include <stdio.h> int main(int argc, char** argv) { if (argc != 3) { fprintf(stderr, "Usage: seticon ICON TARGET"); return 1; } NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; NSString* iconPath = [NSString stringWithUTF8String:argv[1]]; NSString* filePath = [NSString stringWithUTF8String:argv[2]]; [NSApplication sharedApplication]; [[NSWorkspace sharedWorkspace] setIcon: [[NSImage alloc] initWithContentsOfFile: iconPath] forFile: filePath options: 0]; [pool release]; return 0; }