Questions tagged [cracking]

Activities to break into computer(s) or technology systems without authorized access.

Questions requesting assistance with compromised sites rarely belong on Stack Overflow and generally should go to the sister site security.stackexchange instead.

243 questions
-1
votes
1 answer

Finding the password using the assembly code

I need to trace the password using the assembly code, any guesses, the parts of code i think should be helpful is given below. 0x080484e9 89542404 mov dword [esp + 4], edx …
TheAmateur
  • 45
  • 12
-1
votes
1 answer

Does a web cracker need reading perrmission to destroy a UNIX server

In UNIX, if I give a website member indirect permission to write to a file, read from the file, but through a cgi, what are the security risks? like so: As you can see, only the cgi has permission to read and write to the file. It would seem that…
Pro Blaster
  • 491
  • 3
  • 9
-1
votes
1 answer

Brute force 4-digit combinations

I want to brute force 4-digit combinations (0 through 9) by simulating number-pad key-presses. How to do this using AutoIt?
John123
  • 301
  • 3
  • 19
-1
votes
1 answer

What is this function saying?

I would like to know what this function is saying... im an amateur. function get_cached_balance() { var balance = "?"; if (localStorage['rumola:balance']) balance = ""+localStorage['rumola:balance']; return balance; } function…
Nxlevel
  • 788
  • 1
  • 7
  • 17
-1
votes
1 answer

C++ : How can I do it without copy&paste? It loops itself

I'm new at C++, I am trying to make some brute force password cracking. At the moment, it loops from aaaaa to zzzzz. question : Is it possible to make it like from a to zzzzz? I am working on this for like non-stop 6 hours and still could't find a…
user3332706
-2
votes
1 answer

Is it possible to copy a website with its plugin?

Is it possible to copy a website with its plugin? There's a site which I want to have. However, it's really too expensive to buy. As I said, is there a way to copy that website with its plugin? Regards
-2
votes
1 answer

Identifying hash type

I was exploiting a web application for my lab and I found these hashes…
user4849453
-2
votes
1 answer

Keylogger python3 with smtp feauture

from pynput import keyboard import smtplib events = [] def on_press(key): try: ('{0}'.format(key.char)) events.append(key) print(events) except AttributeError : print('{0}'.format(key)) def on_handling(): …
-2
votes
1 answer

EvilZone barcode cracking on homepage

So i found this website called EvilZone and on their home page on the bottom there's a barcode, under it says "Can you crack it?" i'm new to the whole thing so i uploaded the image of the barcode to an online scanner and got this 64 57 64 6e 59 7a…
-2
votes
1 answer

BruteForce attack program in python not working

I have developed a zipfile password cracker which does a brute force attack. The password of the zipfile is 1234. When ever I run the program it gives me this error: Traceback (most recent call last): File…
-2
votes
1 answer

Cracksafe Authentication System for Application

We are developing online software which requires an username/pass authentication to our servers. There are two kind of users (Paid and Free users). The paid users should have different features available than the free users of course. Unfortunately…
kentor
  • 16,553
  • 20
  • 86
  • 144
-2
votes
2 answers

How can I prevent the cracking of Mac OS apps?

I have developed a small app for OS X and I provided it in the Mac App Store. Some weeks later I found a cracked version of my app on rapidscene.me. It seems for me the code signing of Apple is not strong enough to prevent cracks. Are there any…
user2156649
  • 73
  • 1
  • 8
-3
votes
2 answers

desktop video player with new codec

I need to create a video player like pot player or vlc , that can play my personal codec ( like mp4 , mkv , ... ) for security reason a player has a login page and the user has to sign in to play video in it with out sign in the player doesn't…
Alex
  • 1
  • 3
-3
votes
1 answer

Tried to write "cracker" - OFC it doesnt work but i think it could xD

I am quite new to python and i tried to write "cracker" (not really, just a programme that writes all possible combinations). I used linecache and then just while loops (far too many). The idea was to make a dictionary with a-Z and 0-9 characters…
Bob
  • 347
  • 2
  • 3
  • 12
-3
votes
1 answer

is there any codeforce-like site for improving system security(aka cracking) skills?

recently, I got interested in an assignment, which was to deassemble a program and crack the password in it. and i remember that I enjoyed trying sql injection to a security problem given by a friend. I wonder if there's a site with cracking problem…
1 2 3
16
17