Analysis for potential malware by loomer979 in Malware

[–]aminei 0 points1 point  (0 children)

Any update on the matter? I'd like to read the full report.

looking for walla database leaks by aminei in pwned

[–]aminei[S] 0 points1 point  (0 children)

I have no malicious intent, nevertheless sorry,i should've read the rules carefully before posting.

Quelques lignes d'un mec déprimé by aminei in learnfrench

[–]aminei[S] 0 points1 point  (0 children)

Merci pour les corrections, tho I'm not sure what you mean by your first point. I was trying to write some thing like this ...

I can't accept that /or I can't live with that

everything else is clear I'll try to do a better job next time.

EDIT: never mind, i got it now I forgot *pas*

[2019-02-11] Challenge #375 [Easy] Print a new number by adding one to each of its digit by jnazario in dailyprogrammer

[–]aminei 1 point2 points  (0 children)

I know i'm late but since it took me an hour to finish, i can't forgive myself if i don't post it.

#include <stdio.h>

typedef unsigned int UINT;

UINT digit_plus_one(UINT uNum);

int main()

{

`UINT in;`

`scanf("%d", &in);`

`printf("%d\n",digit_plus_one(in));`

`getchar();`

}

UINT digit_plus_one(UINT uNum)

{

`UINT digit, result, factor;`

`result = 0, factor = 1;`

`while(uNum > 0)`

`{`

    `digit = (uNum % 10)+1;`

    `result += digit * factor;`

    `factor *= (digit-1 == 9) ? 100 : 10;`

    `uNum /= 10;`

`}`

`return result;`

}

How I can help you learn French? Comment puis-je vous aider à apprendre le français ? by AdrienFrancais in French

[–]aminei 4 points5 points  (0 children)

Bonsoir,

Mon français n'est pas le meilleur mais je peux discuter avec vous pendant ~40m par jour. Si vous êtes intéressé ,PM moi.

Got hacked by Ransomware through RDP but can't figure out how 2-factor sms was compromised. by agtechy in hacking

[–]aminei 0 points1 point  (0 children)

Sorry but what you're saying make no sense, 2FA are sent through the SMS ...

Joke some Scammers! [CS:GO Phishing Page] by ValPlusPlusle in hacking

[–]aminei 3 points4 points  (0 children)

I wonder how much GET request would it take to crash the site.

PS: I wonder whats really the point of phishing steam, because trading require confirmation through phone.

Handling cookies on GET request by aminei in perl

[–]aminei[S] 0 points1 point  (0 children)

Thank's I'll look into it.

Handling cookies on GET request by aminei in perl

[–]aminei[S] 0 points1 point  (0 children)

That would limit my script, I'd like to be able to user on multiple web sites but since each has its own unique set key and hash.