Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Update README with a solution to install libcrypto if
missing on the student machine

Signed-off-by: Andreia Ocănoaia <[email protected]>
  • Loading branch information
andreia-oca authored and teodutu committed Mar 28, 2024
1 parent f6d9ba9 commit 3bf501e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions laborator/content/toolchain-decompilare/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,17 @@ Folosind informațiile noi dobândite despre `Ghidra`, dar și cele învățate
Programul generează o valoare aleatoare și vă cere să ghiciți o altă valoare calculată pe baza valorii aleatoare.<br>
Mult succes!
Notă: Dacă primiți următoarea eroarea la rularea executabilului:
```bash
./old-hits: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
```

Instalați biblioteca `libcrypto.so.1.1` folosind următoarele comenzi:

```bash
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
rm libssl1.1_1.1.1f-1ubuntu2_amd64.deb
```

0 comments on commit 3bf501e

Please sign in to comment.