Replies: 5 comments
-
Your code is ANSI C, not Python 😆 I guess that your code has a missing "s", should be: |
Beta Was this translation helpful? Give feedback.
-
Other Linux-standard possible solutions:
|
Beta Was this translation helpful? Give feedback.
-
First, thank you for the quick response.
|
Beta Was this translation helpful? Give feedback.
-
Hello again, Brother! |
Beta Was this translation helpful? Give feedback.
-
I also got plenty of errors when i tried to add prctl or pthread_setname_np |
Beta Was this translation helpful? Give feedback.
-
Hello !
A Fake Process will be awesome.
This is an example of a fake process command line :
trcpy(argv[0],FAKE); // fake the proccess name.
while(fgets(buff,sizeof(buff),fp))
{
c=strchr(buff,'n');
if(c!=NULL) *c='.';
if (!(fork()))
{
where=0;
// printf("--> attacking %s",buff);
for (i=0; i<count; i=i+2){
// printf("--> Trying %s:%s %sn",a[i],a[i+1],buff);
checkauth(a[i],a[i+1],buff); // try to auth
}
exit(0);
this is taken from
https://github.com/MrMugiwara/against-cracker/blob/master/against.py
Of course, this is py, but i guess this can also be done in C.
Thank you, Brother !
Beta Was this translation helpful? Give feedback.
All reactions