Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/04/17 in all areas

  1. Tutorial pentru bypass filtre XSS, in doua parti (momentan). Primul contine chestii generice (hex, control characters, octal): http://blog.rakeshmane.com/2016/11/xssing-web-part-1.html Aici se concentreaza pe Unicode (UTF-8, UTF-16, UTF-32, BOM) http://blog.rakeshmane.com/2017/08/xssing-web-part-2.html
    3 points
  2. Authorities arrested the UK security researcher known for stopping the WannaCry ransomware attack in May. On Wednesday, 22-year-old Marcus Hutchins -- also known as MalwareTech -- was arrested in Las Vegas for "his role in creating and distributing the Kronos banking Trojan," according to a spokesperson from the U.S. Department of Justice. The charges relate to alleged conduct occurring between July 2014 and July 2015. According to an indictment provided to CNN Tech, Hutchins created the malware and shared it online. Earlier this year, Hutchins became an internet hero when he helped stop WannaCry, a cyberattack that targeted over 150 countries. The ransomware locked down computers and demanded $300 to get files back. Hutchins, who is a malware researcher at the Kryptos Logic security firm, created a killswitch that prevented the spread of the virus. Friends and family have not been able to speak with Hutchins, according to a person close to the situation. The news of the detention was first reported by Motherboard. This story is developing. sursa: http://money.cnn.com/2017/08/03/technology/culture/malwaretech-arrested-las-vegas-trojan/index.html acuzarea: https://www.documentcloud.org/documents/3912524-Kronos-Indictment-R.html pe acelasi subiect: https://motherboard.vice.com/en_us/article/ywp8k5/researcher-who-stopped-wannacry-ransomware-detained-in-us-after-def-con https://www.theguardian.com/technology/2017/aug/03/researcher-who-stopped-wannacry-ransomware-detained-in-us?CMP=share_btn_tw
    2 points
  3. Unpacking Locky I will show you how to unpack a Locky sample with OllyDbg. This packer is indeed an easy one. But you will see for yourself. Download the sample from Hybrid-Analysis. An alternative way of unpacking this sample is in this video on my channel: The first thing I always do is a static check with a PE analysis tool like PortexAnalyzer. The image will look as follows and already tell us that the file is packed. Several sections of the file have a high entropy, including the .rdata section. Packer identifies like DIE will not know what was used to pack it, because the packer is a custom one. This is often the case with malware samples. This packer has the quirky characteristic to always add 32-bit Edition to the file version information whilst the other information changes: StringFileInfo --------------- language ID: 0x0409 code page: 0x04b0 CompanyName: Doubtsoftware.com FileDescription: Advanced Task Scheduler 32-bit Edition FileVersion: 4.1.0.612 InternalName: #dvenced Task Scheduler 32-bit Edition LegalCopyright: Copyright © Southsoftware.com, 2002-2015 OriginalFilename: Bifscheduler_edmin.exe ProductName: Advanced Task Scheduler 32-bit Edition ProductVersion: 4.1.0.612 The debug information has a strange, unknown type, hence Portex does not parse it any further: Debug Information ***************** Time Date Stamp: Thu Dec 09 05:07:00 CET 2083 Type: 4102553603 no description available If you look into the binary (tip: search for 'RSDS' to find it with the hex editor) you will see that there is debug path that has been created or modified in a random fashion: Z:\as\28cxkoao\azoozykz\l0t\jx\w9y4cni\jyc6mq3\mvnt.pdb Whilst this does not help to unpack the file, it might help to recognize this custom packer in the future. A check of the strings in the binary and the imports won't get us any further. If you get this sample in a fresh state, you will easily see that this is Locky with dynamic analysis. But once the samples are older and can't find a working C&C, they won't encrypt anymore. Now load the binary with OllyDbg. Don't forget to take a snapshot of your VM at this point. Simply step over with F8 while keeping your eyes open. If you happen to step over the following call you will see that the sample is doing a lot (reload the sample if that happens), so you should step into it instead (press f7). The same happens at the following call, also step into: Just keep on going like this, stepping over calls unless they start to do a lot, and keep your eyes open. At address 0x402364 you might notice that the code writes to the .rdata section (0x417EE on that image). Indeed, if you put a breakpoint to the instruction and watch .rdata in the dump window while running to the breakpoint (F9), you will see how .rdata gets decrypted. The jump to the .rdata section appears in 0x4020F0. Note that push followed by ret equals a jump instruction. This ret instruction will jump to 0x41577A. Compare that with the PortexAnalyzer report or the Memory window in OllyDbg to verify that this virtual address is in the .rdata section. Unfortunately we are not there yet. The decrypted code in the .rdata section is also a packer stub. Step through the code for a while. At some point you will see that the code collects addresses to common DLL functions with GetProcAddress. One of those is RtlDecompressBuffer, which is used by lots of packers to unpack their payload. Break at address 0x415B37. Right-click the value of EAX and click "Follow in Disassembler". You will now see the code of the RtlDecompressBuffer function. Break at the PUSH DWORD PTR [EBP + C] instruction: Now right-click the EDI value and Follow in Dump You will see an empty dump window And after stepping over (F8) the file will unpack in memory. The last thing to do is to open the Memory window and select the right memory area to dump the unpacked executable. Choose the location to save the dump to and you are done. The result is an unpacked Locky as you can verify by checking the strings of the dump or looking at it with a hex editor. Posted 8 hours ago by Karsten Hahn Sursa: http://struppigel.blogspot.de/2017/08/unpacking-locky.html
    2 points
  4. " Your Node.js authentication tutorial is wrong ... digging through various Node.js tutorials, as it seems that every Node.js developer with a blog has released their own tutorial on how to do things the right way, or, more accurately, the way they do them. Thousands of front-end developers being thrown into the server-side JS maelstrom are trying to piece together actionable knowledge from these tutorials, either by cargo-cult-copypasta or gratuitous use of npm install as they scramble frantically to meet the deadlines set for them by outsourcing managers or ad agency creative directors. One of the more questionable things in Node.js development is that authentication is largely left as an exercise to the individual developer. The de facto authentication solution in the Express.js world is Passport, which offers a host of strategies for authentication. If you want a robust solution similar to Plataformatec’s Devise for Ruby on Rails, you’ll likely be pointed to Auth0, a startup who has made authentication as a service. Compared to Devise, Passport is simply authentication middleware, and does not handle any of the other parts of authentication for you: that means the Node.js developer is likely to roll their own API token mechanisms, password reset token mechanisms, user authentication routes and endpoints, and views in whatever templating language is the rage today. Because of this, there are a lot of tutorials that specialize in setting up Passport for your Express.js application, and nearly all of them are wrong in some way or another, and none properly implement the full stack necessary for a working web application..... " Source: https://medium.com/@micaksica/your-node-js-authentication-tutorial-is-wrong-f1a3bf831a46
    2 points
  5. EDITAT: Vezi ultimul reply. Salut, dupa cum spune si titlul vand 3 site-uri, toate 3 sunt pe nisa filme / seriale online. Site 1: Vechime in jur de o luna. Domeniu: Namecheap Webhost: Mxhost - 7e / luna Trafic: https://s2.postimg.org/udd7mnj6h/Screenshot_2017-07-31-16-45-45.png Astazi ajunge la 4,5k. Produce in jur de 2.25$ pe zi din popads + in jur de 1.10-1.20 bc.vc fake player. https://s3.postimg.org/g2i7id5wj/popads.png. La bc.vc nu pot sa pun dovezi per site si promovez cu 4 site-uri. Are un backlink pe articol pe un site cu autoritate. Rankeaza bine, o sa va dau site-ul in pm daca e necesar. Tema este keremiya insa optimizata SEO si facuta responsive + ceva design modificat. (Valabil pentru toate site- urile). Pretul nu este stabilit, astept oferte de la voi. Probabil o sa creasca mult odata cu lansarile din August. Site 2: Vechime aproape doua luni, uitasem de el si mi-am reamintit cand am primit email ca imi anuleaza daca nu platesc. Domeniu: Namecheap Webhost: Mxhost - 7e / luna Trafic: http://postimg.org/image/l5yq6urgv/ - Azi ajunge la 2K. Produce in jur de 1.22$ pe popads (cu tot cu perioadele proaste din graficul de trafic) si pe bc.vc in jur 0,50- 0,70$. https://s3.postimg.org/xl48mi62b/popads.png Tema la fel, iar pretul nici aici nu este stabilit, astept oferte. Site 3: Domeniu: Namecheap Webhost: 2gb.ro, o oferta speciala cu 5 GB spatiu si Ip dedicat. 4euro/luna Acest site este cel mai nou din toate avand, doar o saptamana. Cu toate astea, azi trece de 1k, probabil ajunge la 1,5k iar sambata am avut 190 din pricina unor probleme. https://s4.postimg.org/9nxbmmza5/Screenshot_2017-07-31-16-46-00.png Azi i-am pus reclame popads, asa ca momentan nu am ce sa arat. Pe bc.vc produce lejer un 0,50$. Astept oferte in PM, daca e nevoie va prezint si site-urile. Plata doar paypal. A, asa se prezinta panoul general popads + bc.vc, in caz ca doriti sa luati toate site-urile. https://postimg.org/gallery/2501kls2i/ P.S! Mentionez ca eu am ales pe toate trei sa pun doar trailerele, dupa ce transfer domeniul in contul dvs puteti sa faceti orice modificare doriti. P.S2! Ofer acces la Google Analytics pentru a va convinge ca traficul este real si pentru a putea vedea toate detaliile.
    1 point
  6. Cica non-resident loader...AppData\Roaming\RND.exe http://dropmefiles.com/NspkA
    1 point
  7. Daca site-ul e privat, gen access cu invitatie (e.x: filelist dot ro) + hosting undeva in suedia e ok, daca vrei sa faci ceva public iei domeniu si host off-shore.
    1 point
  8. iOS 10.3.2 XPC Userland Jailbreak Exploit Tutorial - CVE-2017-7047 by Ian Beer Publicat pe 3 aug. 2017 Just thought I'd make a quick video explaining a bit about the new user land research tool & exploit released by Ian Beer for iOS 10.3.2! Currently this project only allows you to mess with user land processes such as backboardd, launchd, SpringBoard, etc & is DOES NOT provide a method of fully jailbreaking & patching the kernel and installing Cydia and other jailbroken packages onto the device. Download the tool - https://bugs.chromium.org/p/project-z... Thanks for watching! ∎∎∎My Social Media∎∎∎ Twitter - https://bit.ly/2rA593q Website - https://bit.ly/2sDHJiB
    1 point
  9. Inainte de ISR era MortalTeam, de unde am inceput si eu. Puscas_Marin, Ras, EMINEM faceau parte din staff.
    1 point
  10. UACMe - Defeating Windows User Account Control by EP_X0FF » Fri Dec 19, 2014 8:19 am Inspired by ITW WinNT/Pitou legacy MBR x86-64 bootkit dropper. Before anything else read this excellent work -> Windows 7 UAC whitelist, read it carefully as it explains everything especially why Windows User Account Control is a big fucken marketing joke from Microsoft just like DSE. Below is our variant of his work with removal of all C++ trash and adapting different UAC bypass method from WinNT/Pitou (bootkit authors also used as base Leo Davidson work). The only setting UAC somehow is able to show itself - if they are set on maximum. But here revealed another Microsoft UAC architecture flaw by design - even when it blocks something, it cannot properly determine what it blocked, representing possible malicious actions as taken by Microsoft, facepalm. Will you trust verified Microsoft action with verified digital certificate from Microsoft? Supported Windows version, all from 7xxx builds up to latest so "confidential" MS build 9901. Project overview: Win32 and x64 configurations. Compiled in MSVS 2013 U4, used pure C, compiled as C++ No additional dependencies. All libs in attach. Debug builds configurations present only for debugging stuff not for UAC bypass stage execution (shellcode will be screwed up). Require Heavens Gate adaptation for proper work from Win32 app under WOW64, if you don't know what is HG then skip this moment. x64 loader VT https://www.virustotal.com/en/file/78caa8fa31a802547b160f41c03fd825d01d1edcd064e06984d0cf84a3bc7813/analysis/1418968668/ x86-32 loader VT https://www.virustotal.com/en/file/97952e6bb9cb4b3c43215597be0bb1da504d2066fd1717c20d6fd64917311c06/analysis/1418968812/ Screeenshots taken from Windows 10 TP build 9901 uac101.png (325.47 KiB) Viewed 16 times uac102.png (215.73 KiB) Viewed 16 times Attachments UACME.rar pass: uacme(498.9 KiB) Downloaded 6 times Sursa: KernelMode.info • View topic - UACMe - Defeating Windows User Account Control
    1 point
  11. Hackers Hijacked Chrome Extension for Web Developers With Over 1 Million Users " ..., another popular Chrome extension 'Web Developer' was hijacked by some unknown attackers, who updated the software to directly inject advertisements into the web browser of over its 1 million users. Chris Pederick, the creator of Web Developer Chrome extension that offers various web development tools to its users, alerted late Wednesday that some unknown hackers apparently phished his Google account, updated the extension to version 0.4.9, and pushed it out to its 1,044,000 users. In both the cases, cyber criminals used phishing first to gain access to the developers' Google accounts, hijacked their respective extensions and then updated the extension to perform malicious tasks. " Source: https://thehackernews.com/2017/08/chrome-extension-for-web-developers.html
    1 point
  12. Framing. Sounds like a 1984 Romanian Secret Police operation. The difference is they were much better at doing this than nowadays FBI. https://theoutline.com/post/2054/the-wannacry-hacker-hero-was-spending-big-in-vegas-before-his-arrest LOL
    1 point
  13. Nou comunicat de presa DOJ https://www.documentcloud.org/documents/3912820-MAN-CHARGED-for-HIS-ROLE-in-CREATING-the-KRONOS.html (conform https://twitter.com/cfarivar/status/893198435817472000)
    1 point
  14. 1 point
  15. http://dropmefiles.com/BnLLT
    1 point
  16. 1 point
  17. Trimis. Site 2 ramane la 30 de euro. Site 1 la 100. Site 3 indisponibil
    1 point
  18. am eroare cu liburile : root@vps:/usr/local/lib/libssh2-1.8.0# gcc -o brute sursa.c -I /usr/local/include/ -L /usr/local/lib/libssh2-1.8.0 -static -lssh2 -lssl -lcrypto -ldl -lz -lpthread sursa.c: In function 'check_sockets': sursa.c:141:25: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] (char *)inet_ntoa(connlist.addr.sin_addr)); ^ sursa.c:156:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] (char *)inet_ntoa(connlist.addr.sin_addr)); ^ sursa.c: In function 'scanbclass': sursa.c:403:5: warning: too many arguments for format [-Wformat-extra-args] snprintf(outfile, sizeof(outfile) - 1, "scan.log", bclass, port); ^ sursa.c:403:5: warning: too many arguments for format [-Wformat-extra-args] sursa.c:410:5: warning: too many arguments for format [-Wformat-extra-args] printf("[-] Searching: ", bclass); ^ sursa.c:486:5: warning: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'time_t' [-Wformat=] printf("\n[!] Scanare completa In %u Secunde. [Avem aici %d ips]\n", (time(0) - scantime), tot); ^ /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(channel.o): In function `libssh2_channel_x11_req_ex': (.text+0x1ad3): undefined reference to `gcry_randomize' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(transport.o): In function `_libssh2_transport_send': (.text+0x9b5): undefined reference to `gcry_randomize' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(transport.o): In function `_libssh2_transport_send': (.text+0xb4f): undefined reference to `gcry_randomize' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_new': (.text+0x7e): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_new': (.text+0xa4): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0xf9): undefined reference to `gcry_md_hash_buffer' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x116): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x12f): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x144): undefined reference to `gcry_pk_verify' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x14f): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x159): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_verify': (.text+0x18e): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_new': (.text+0x203): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_new': (.text+0x24e): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_sign': (.text+0x777): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_sign': (.text+0x791): undefined reference to `gcry_pk_sign' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_sign': (.text+0x79d): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_sign': (.text+0x7b6): undefined reference to `gcry_sexp_find_token' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_rsa_sha1_sign': (.text+0x7d2): undefined reference to `gcry_sexp_nth_data' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x8ac): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x8c6): undefined reference to `gcry_pk_sign' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x8d2): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x912): undefined reference to `gcry_sexp_find_token' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x932): undefined reference to `gcry_sexp_nth_data' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x96f): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x980): undefined reference to `gcry_sexp_find_token' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x99c): undefined reference to `gcry_sexp_nth_data' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x9e0): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_sign': (.text+0x9ef): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xa8e): undefined reference to `gcry_md_hash_buffer' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xab0): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xadd): undefined reference to `gcry_sexp_build' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xaf3): undefined reference to `gcry_pk_verify' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xaff): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xb09): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_dsa_sha1_verify': (.text+0xb3e): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xb7b): undefined reference to `gcry_cipher_get_algo_keylen' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xb8d): undefined reference to `gcry_cipher_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xba0): undefined reference to `gcry_cipher_setkey' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xbb1): undefined reference to `gcry_cipher_get_algo_blklen' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xbc8): undefined reference to `gcry_cipher_setiv' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xbe9): undefined reference to `gcry_cipher_setctr' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xbfa): undefined reference to `gcry_cipher_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_init': (.text+0xc05): undefined reference to `gcry_cipher_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_crypt': (.text+0xc21): undefined reference to `gcry_cipher_decrypt' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(libgcrypt.o): In function `_libssh2_cipher_crypt': (.text+0xc29): undefined reference to `gcry_cipher_encrypt' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(global.o): In function `libssh2_init': (.text+0x36): undefined reference to `gcry_control' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_dtor': (.text+0x8): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_dtor': (.text+0x28): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_signv': (.text+0xc4): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_signv': (.text+0xf1): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_signv': (.text+0x102): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_signv': (.text+0x124): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_initPEM': (.text+0x19f): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_dss_init': (.text+0x20d): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_signv': (.text+0x35c): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_signv': (.text+0x381): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_signv': (.text+0x392): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_signv': (.text+0x3b4): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_initPEM': (.text+0x43f): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(hostkey.o): In function `hostkey_method_ssh_rsa_init': (.text+0x4a9): undefined reference to `gcry_sexp_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x161): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x172): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x183): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x194): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x23d): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x248): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x253): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x25e): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x28e): undefined reference to `gcry_mpi_randomize' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x2a1): undefined reference to `gcry_mpi_powm' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x2aa): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x2b8): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x2d1): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x310): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x321): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o):(.text+0x334): more undefined references to `gcry_mpi_get_nbits' follow /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x359): undefined reference to `gcry_mpi_print' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x444): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x465): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x483): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x48f): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x4b7): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x576): undefined reference to `gcry_mpi_scan' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x5af): undefined reference to `gcry_mpi_powm' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x5b8): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x5c6): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x5e2): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x622): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x633): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o):(.text+0x642): more undefined references to `gcry_mpi_get_nbits' follow /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x66a): undefined reference to `gcry_mpi_print' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x67d): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x6b5): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x6d7): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x701): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x722): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x744): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o):(.text+0x75e): more undefined references to `gcry_md_write' follow /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x87e): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x89f): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x9fc): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa08): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa2f): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa52): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa6a): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa7c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xa99): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xab0): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xae5): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xaf8): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xb1d): undefined reference to `gcry_mpi_print' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xccc): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xcd8): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xcff): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xd22): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xd3a): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xd4c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xd69): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xd80): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xddc): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xde8): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe0e): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe31): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe49): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe5d): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe7a): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xe91): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xf8c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xf98): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xfbf): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xfe2): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0xffa): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x100c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1029): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1040): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x109c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x10a8): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x10ce): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x10f1): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1109): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x111d): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x113a): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1151): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1173): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x117f): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x119e): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x129c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x12a8): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x12cf): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x12f2): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x130a): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x131c): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1339): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1350): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1387): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1396): undefined reference to `gcry_mpi_get_nbits' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x13be): undefined reference to `gcry_mpi_print' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1578): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x158e): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `diffie_hellman_sha1': (.text+0x1610): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x16d8): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x16ef): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x1713): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x1721): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x1735): undefined reference to `gcry_mpi_set_ui' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group1_sha1_key_exchange': (.text+0x1753): undefined reference to `gcry_mpi_scan' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x17b3): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x17ca): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x17f3): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x1801): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x1902): undefined reference to `gcry_mpi_scan' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group_exchange_sha1_key_exchange': (.text+0x1924): undefined reference to `gcry_mpi_scan' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1a5e): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1a75): undefined reference to `gcry_mpi_release' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1a93): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1aa1): undefined reference to `gcry_mpi_new' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1ab5): undefined reference to `gcry_mpi_set_ui' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `kex_method_diffie_hellman_group14_sha1_key_exchange': (.text+0x1ad3): undefined reference to `gcry_mpi_scan' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(kex.o): In function `_libssh2_kex_exchange': (.text+0x246b): undefined reference to `gcry_randomize' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0x79): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0x8b): undefined reference to `gcry_md_setkey' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0x9f): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0xaf): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0xbe): undefined reference to `gcry_md_get_algo' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0xc5): undefined reference to `gcry_md_get_algo_dlen' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0xd3): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0xea): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_ripemd160_hash': (.text+0x125): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x179): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x18b): undefined reference to `gcry_md_setkey' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x19f): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x1af): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x1be): undefined reference to `gcry_md_get_algo' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x1c5): undefined reference to `gcry_md_get_algo_dlen' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x1d3): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x1ea): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_md5_hash': (.text+0x225): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x2d9): undefined reference to `gcry_md_open' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x2eb): undefined reference to `gcry_md_setkey' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x2ff): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x30f): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x31e): undefined reference to `gcry_md_get_algo' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x325): undefined reference to `gcry_md_get_algo_dlen' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x333): undefined reference to `gcry_md_read' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x34a): undefined reference to `gcry_md_close' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(mac.o): In function `mac_method_hmac_sha1_hash': (.text+0x385): undefined reference to `gcry_md_write' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libssh2.a(crypt.o): In function `crypt_dtor': (.text+0x1e): undefined reference to `gcry_cipher_close' collect2: error: ld returned 1 exit status
    -1 points
  19. Am o intrebare poate simpla pentru unii dar vreau sa fiu pe deplin lamurit. Sa zicem ca vreau sa deschid un site, domeniul o sa fie .com sau .net, ce hosting trebuie sa caut in ce tara in asa fel incat sa nu imi comenteze nimeni de continut, sa zicem ca ar fi programe piratate, etc. In cazul in care domeniul este .ro, dar hostingul este "undeva unde nu ar zice nimeni nimic" se pot sesiza cei de la minister ?
    -1 points
This leaderboard is set to Bucharest/GMT+03:00
×
×
  • Create New...