Jump to content

Search the Community

Showing results for tags 'x64'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Informatii generale
    • Anunturi importante
    • Bine ai venit
    • Proiecte RST
  • Sectiunea tehnica
    • Exploituri
    • Challenges (CTF)
    • Bug Bounty
    • Programare
    • Securitate web
    • Reverse engineering & exploit development
    • Mobile security
    • Sisteme de operare si discutii hardware
    • Electronica
    • Wireless Pentesting
    • Black SEO & monetizare
  • Tutoriale
    • Tutoriale in romana
    • Tutoriale in engleza
    • Tutoriale video
  • Programe
    • Programe hacking
    • Programe securitate
    • Programe utile
    • Free stuff
  • Discutii generale
    • RST Market
    • Off-topic
    • Discutii incepatori
    • Stiri securitate
    • Linkuri
    • Cosul de gunoi
  • Club Test's Topics
  • Clubul saraciei absolute's Topics
  • Chernobyl Hackers's Topics
  • Programming & Fun's Jokes / Funny pictures (programming related!)
  • Programming & Fun's Programming
  • Programming & Fun's Programming challenges
  • Bani pă net's Topics
  • Cumparaturi online's Topics
  • Web Development's Forum
  • 3D Print's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber


Skype


Location


Interests


Biography


Location


Interests


Occupation

Found 10 results

  1. Keygenning is a process of finding a valid key for a program. It is used for cracking/piracy. Most of the cracking has been documented on x86, there haven’t been many articles on x64 cracking. In this article, we will show you how to keygen a Linux x64 bit application on a Linux computer. For purpose we will use 1: Linux machine ( 64bit mint box) 2: EDB debugger 3: IDA Disassembler 4: Compiler to write a key generator 5: Fill out the form below for the files associated with this article Let’s run file command to check the type of file. file r5 r5: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=86bf854ce620288567d153883d4609163485d34d, not stripped From the output, we see the build version, and it is a dynamically linked file. ~/Desktop $ nm r5 0000000000601109 B __bss_start 00000000006010e0 D buf 000000000040069d T check_password 0000000000601109 b completed.6972 0000000000601060 D __data_start 0000000000601060 W data_start 00000000006010a0 D delta 00000000004005e0 t deregister_tm_clones 0000000000400650 t __do_global_dtors_aux 0000000000600e18 t __do_global_dtors_aux_fini_array_entry 0000000000601068 D __dso_handle 0000000000600e28 d _DYNAMIC 0000000000601109 D _edata 0000000000601110 B _end 0000000000400894 T _fini 0000000000400670 t frame_dummy 0000000000600e10 t __frame_dummy_init_array_entry 0000000000400a80 r __FRAME_END__ 0000000000601000 d _GLOBAL_OFFSET_TABLE_ w __gmon_start__ 0000000000400500 T _init 0000000000600e18 t __init_array_end 0000000000600e10 t __init_array_start 00000000004008a0 R _IO_stdin_used w _ITM_deregisterTMCloneTable w _ITM_registerTMCloneTable 0000000000600e20 d __JCR_END__ 0000000000600e20 d __JCR_LIST__ w _Jv_RegisterClasses 0000000000400890 T __libc_csu_fini 0000000000400820 T __libc_csu_init U __libc_start_main@@GLIBC_2.2.5 00000000004007b6 T main 0000000000601080 D master U printf@@GLIBC_2.2.5 U puts@@GLIBC_2.2.5 U random@@GLIBC_2.2.5 0000000000400610 t register_tm_clones 00000000004005b0 T _start U strcmp@@GLIBC_2.2.5 U strcpy@@GLIBC_2.2.5 U strlen@@GLIBC_2.2.5 0000000000601110 D __TMC_END__ x64 assembly basics x64 consists of extended register set and some extra instructions are added as well. Following is the list of added registers in x64 r8, r9 , r10, r11, r12, r13, r14, r15 Lower 32 bits of r8 can be accessed by r8d, lower 16 bits can be accessed by r8w and lower 8 bits can be accessed by rb8 and more over RIP (instruction pointer) can be directly accessed. All the register in x64 are 64bit in sizes . RIP is also 64bit but Current implementations only support 48 bit linear addresses. In addition to normal registers it also added SSE registers namely from xmm8 – xmm15 If any data movement operation is performed on EAX, it zero extends the higher 32 bits of RAX register. Some added instructions are lodsq, stosq etc. For the purpose of debugging, we will use an x64 debugger known as EDB on Linux. This debugger is similar to ollydbg (windows) and is quite easy to use .Following is the default pane of EDB Argument passing in x64 is quite different from x86 itself Arguments are passed in registers RDI, RSI, RDX, RCX, r8 and r9 rest of the parameters are passed on the stack Navigation is simple just like ollydbg Running our crackme file just like that gives us the following output /Desktop $ ./r5 Usage: ./r5 password Maybe plaintext isn’t good after all. Which gives us a hint that it requires a password, which we have to figure out Opening it in a disassembler gives us an idea of what is happening around. Apparently it is looking for a parameter and is passing it to a function Clearly you can see that it passing argv[1] as a parameter to function check_password() The first hint is about the length of the input string, which should be equal to the length of “this_is_not_even_interesting_its_garbage” .data:00000000006010E0 ; char buf[] .data:00000000006010E0 buf db 'this_is_not_even_interesting_its_garbage',0 .data:00000000006010E0 ; DATA XREF: check_password+1C#o .data:00000000006010E0 ; check_password+3C#o ... .data:00000000006010E0 _data ends .data:00000000006010E0 .bss:0000000000601109 ; =========================================================================== and is checked here call _strlen ; Call Procedure mov rbx, rax mov edi, offset buf ; “this_is_not_even_interesting_its_garbag”… call _strlen ; Call Procedure cmp rbx, rax ; Compare Two Operands jz short Go ; Jump if Zero (ZF=1) After that, this string is replaced by our own input string mov rax, [rbp+passcode] mov rsi, rax ; src mov edi, offset buf ; "this_is_not_even_interesting_its_garbag"... call _strcpy ; Call Procedure mov [rbp+VarCheck], 1 jmp loc_400791 ; Jump After this operation program goes in a loop and loop body is skipped if value at index of variable delta is zero movzx eax, delta[rax] ; If not, it performs some mathematical operations on the input strings leveraging on delta and other parameters which can be represented in C language as x = (random() % delta[index] ) + 1; delta[index] = delta[index] - x; var_check = var_check ^ (unsigned int )delta[index] ; random() call is not initialized with srand() so it can be predicted easily. Finally, after the 40 rounds of loop, the mutated string is compared against “this_aint_that_simple_but_good_luck_haha” and if it is equal, “password OK” message is printed Now to calculate that string we can perform the exact opposite on this string to get out key We can use the following C program to do so. #include <stdio.h> unsigned char delta[] = { 3, 253, 3, 249, 0, 3, 6, 0, 241, 0, 250, 7, 22, 235, 8, 252, 246, 2, 254, 243, 4, 19, 1, 234, 237, 15, 253, 240, 242, 15, 12, 243, 241, 12, 7, 0, 5, 14, 10, 4, }; unsigned char buff [48] ; int main(int argc, char **argv) { int index = 0; int var_check = 1; unsigned char x = '\x00'; strcpy(buff, "this_aint_that_simple_but_good_luck_haha"); while ( var_check ) { index = 0; var_check = 0; while ( index < 40) { if (delta[index]) { x = (random() % delta[index] ) + 1; delta[index] = delta[index] - x; var_check = var_check ^ (unsigned int )delta[index] ; buff[index] = buff[index] + x; } // if zero index++; } } printf("%s\n", buff); } Compiling and running this program gives us the following output: “well_done_now_go_on_irc_and_ask_for_more” ~/Desktop $ ./r5 “well_done_now_go_on_irc_and_ask_for_more” password OK Source
  2. ArkDasm ArkDasm is a 64-bit interactive disassembler and debugger for Windows. Supported file types: PE64, raw binary files. Supported processor: x64 architecture (Intel x64 and AMD64) ArkDasm is released as Freeware. Current version: 1.0.0 (April 19, 2015) Main features: parsing PE32+ imports, exports, resources subroutine stack data (arguments, local variables) recognition loading local debug symbols (.pdb file) using DIA multiline comments support bookmarks support python script support possibility to save, load database What's new: added debugger capabilities added new commands: bp, ba switched to the Capstone disasm engine updated Qt to 5.4.0 switched to Visual Studio 2013 minor improvements, bug fixes Link: ArkDasm
  3. Crypter~RST by dang3r1988[100% FUD - 0/35 AVS] Create Vb CRYPTER FUNCTIONAL S.O XP sp1 OK XP sp2 OK XP sp3 OK Vista x86 OK Vista x64 OK Windows 7 X86 OK Windows 7 x64 OK Windows 8 X86 OK Windows 8 x64 OK Windows 10 X86 OK Windows 10 x64 OK Scan:::... Am zis ca nu va mai prezint nimic din ceea ce stiu eu!! dar avand in vedere comentarile voastre si o sa va mai arat ca ,eu am cunostinte in IT si nu vorbesc baliverne ca voi, care inca va mai uitati la desene animate si stiti doar sa stati pe facebook si sa comentati inutil in nestinta de cauza ,,UNI,,Si nu o sa va dau link de download sa va bateti voi joc de nunca mea si nici nu cred ca va trebuie crypter meu??? ca voi stiti sa va faceti singuri dupa cum comentati:))1+1=5:))
  4. Crypter?RST by dang3r1988[100% FUD - 0/35 AVS] Create Vb CRYPTER FUNCTIONAL S.O XP sp1 OK XP sp2 OK XP sp3 OK Vista x86 OK Vista x64 OK Windows 7 X86 OK Windows 7 x64 OK Windows 8 X86 OK Windows 8 x64 OK Windows 10 X86 OK Windows 10 x64 OK Scan:::... Am zis ca nu va mai prezint nimic din ceea ce stiu eu!! dar avand in vedere comentarile voastre si o sa va mai arat ca ,eu am cunostinte in IT si nu vorbesc baliverne ca voi, care inca va mai uitati la desene animate si stiti doar sa stati pe facebook si sa comentati inutil in nestinta de cauza ,,UNI,,Si nu o sa va dau link de download sa va bateti voi joc de nunca mea si nici nu cred ca va trebuie crypter meu??? ca voi stiti sa va faceti singuri dupa cum comentati:))1+1=5:))
  5. Windows 8.1 [x86-x64] (Rus-Eng) 20in1 Activated Windows 8.1 [x86-x64] (Rus-Eng) 20in1 Activated | 6.24 GB Description: Very many do not like Windows 8.x due to the fact that users are downright imposing tiled interface is clearly excessive computer without touchscreen. Thus also removed the familiar and comfortable option as "Start" menu, transparency windows, gadgets ... It seems to me that if these omissions developers eliminated, hunters go to the Windows 8.x would be as much more! But, alas, the company Microsoft, this time scored a bolt to the expectations of users. Therefore came to the fore-party vendors, which as best they could "restore the lost." But they do it with varying degrees of success. And sometimes, unfortunately, just like crafts coffin system. How can you choose? How to pick the best? Before you build that except for my usual work, avtoaktivatsii includes all updates to September 2014, as well as the best, in my opinion, the program for the restoration of the "Start" to restore Aero transparency and opportunities for recovery use gadgets. That's why I called the assembly SevenMod - it contains a number of features that were available in Windows 7, but lost in the Windows 8.x! In principle, I could go to the modding and more. It would be possible to remove the Ribbon interface from the Windows Explorer, you could completely block access to the tiled interface Metro, you could set a theme, repeats the appearance of Windows 7. But why? I see no reason to deprive Windows 8.1 finally her personality. In front of me there was a problem only give you something that is not of a great mind deprived us of the developers of the system. I hope I did it! Assembly includes 10 modifications of Russian and 10 modifications of the English version of Windows 8.1 32-bit (x86) and 64-bit (x64) kernel: - Windows 8.1 Single Language x86 Russian - Windows 8.1 x86 Single Language English - Windows 8.1 Single Language x64 Russian - Windows 8.1 Single Language x64 English - Windows 8.1 Core x86 Russian - Windows 8.1 Core x86 English - Windows 8.1 Core x64 Russian - Windows 8.1 Core x64 English - Windows 8.1 Professional x86 Russian - Windows 8.1 Professional x86 English - Windows 8.1 Professional x64 Russian - Windows 8.1 Professional x64 English - Windows 8.1 Professional with WMC x86 Russian - Windows 8.1 Professional with WMC x86 English - Windows 8.1 Professional with WMC x64 Russian - Windows 8.1 Professional with WMC x64 English - Windows 8.1 Enterprise x86 Russian - Windows 8.1 Enterprise x86 English - Windows 8.1 Enterprise x64 Russian - Windows 8.1 Enterprise x64 English - oftware version: 6.3.9600 Bit: x86-x64 Official site: Microsoft By assembling : m0nkrus Language: English / Russian Treatment: not required (the installer is already disinfected) System requirements: * Processor: 1 gigahertz (GHz) or higher. * RAM 1 gigabyte (GB) for the 32-bit version or 2 GB for 64-bit version. * Free hard drive space: 16 gigabytes (GB) for the 32-bit version or 20 GB for 64-bit version. * Graphics card: graphics device Microsoft DirectX 9 or later. * Additional requirements to use certain features. * To use the touch features require tablet or monitor that supports multi-touch. * To access the Windows Store to download and run applications that require an active Internet connection and a screen resolution of at least 1024x768 pixels. * To bind the application requires a screen resolution of at least 1366x768. DOWNLOAD LINKS: http://u22088411.letitbit.net/download/92606.9addefeb9bd3fd0894d3c00df206/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part1.rar.html http://u22088411.letitbit.net/download/57387.5a3f34184bf2e2a4a2ca9cd97c00/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part2.rar.html http://u22088411.letitbit.net/download/19022.172ab250b98d392850df20759574/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part3.rar.html http://u22088411.letitbit.net/download/91855.92cf5ef0039f6cb4f1b9eeef84f8/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part4.rar.html http://u22088411.letitbit.net/download/65757.61bacdc15eafb1ea47026b8761dc/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part5.rar.html http://rapidgator.net/file/2aefe4b09dfa401f9a035cd297432694/Win8.1_[x86-x64]_(Rus-Eng)_20in1_Activated_by_m0nkrus-=TEAM_OS=-{HKRG}.part1.rar.html http://rapidgator.net/file/92b96a5130ac0dcca289738617871b29/Win8.1_[x86-x64]_(Rus-Eng)_20in1_Activated_by_m0nkrus-=TEAM_OS=-{HKRG}.part2.rar.html http://rapidgator.net/file/53e847778ddb30fbab68078bbddad27b/Win8.1_[x86-x64]_(Rus-Eng)_20in1_Activated_by_m0nkrus-=TEAM_OS=-{HKRG}.part3.rar.html http://rapidgator.net/file/0c2901c3eafd6f97873c9bf7c6c9f649/Win8.1_[x86-x64]_(Rus-Eng)_20in1_Activated_by_m0nkrus-=TEAM_OS=-{HKRG}.part4.rar.html http://rapidgator.net/file/d06546ae48e65bb9bc3007467ee4a8d4/Win8.1_[x86-x64]_(Rus-Eng)_20in1_Activated_by_m0nkrus-=TEAM_OS=-{HKRG}.part5.rar.html http://uploaded.net/file/wn264exk/Win8.1_%5Bx86-x64%5D_%28Rus-Eng%29_20in1_Activated_by_m0nkrus-%3DTEAM_OS%3D-%7BHKRG%7D.part1.rar http://uploaded.net/file/107asrza/Win8.1_%5Bx86-x64%5D_%28Rus-Eng%29_20in1_Activated_by_m0nkrus-%3DTEAM_OS%3D-%7BHKRG%7D.part2.rar http://uploaded.net/file/si5id9dh/Win8.1_%5Bx86-x64%5D_%28Rus-Eng%29_20in1_Activated_by_m0nkrus-%3DTEAM_OS%3D-%7BHKRG%7D.part3.rar http://uploaded.net/file/rrbiqg71/Win8.1_%5Bx86-x64%5D_%28Rus-Eng%29_20in1_Activated_by_m0nkrus-%3DTEAM_OS%3D-%7BHKRG%7D.part4.rar http://uploaded.net/file/pjgh0gom/Win8.1_%5Bx86-x64%5D_%28Rus-Eng%29_20in1_Activated_by_m0nkrus-%3DTEAM_OS%3D-%7BHKRG%7D.part5.rar http://u18391561.shareflare.net/download/37531.3317e96c2378d7e5ca27d8827a63/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part1.rar.html http://u18391561.shareflare.net/download/88860.81c1e41e261ecf0e67c507b07682/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part2.rar.html http://u18391561.shareflare.net/download/39855.3e1a137d0a84c8698bf6e7454d0d/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part3.rar.html http://u18391561.shareflare.net/download/48168.466c60f03611fd58797e21615597/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part4.rar.html http://u18391561.shareflare.net/download/71977.77a3f8bf65665740966815261e70/Win8.1__x86-x64__%28Rus-Eng%29_20in1_Activated_by_m0nkrus-_TEAM_OS_-_HKRG_.part5.rar.html
  6. Autodesk AutoCAD 2015 Portable (x64) Autodesk AutoCAD 2015 Portable (x64) | 1.1 GB Autodesk Inc., a world leader in 3D design software for entertainment, natural resources, manufacturing, engineering, construction, and civil infrastructure, has released an Service Pack 01 for AutoCAD 2015, the latest release of one of the world's leading computer-aided design (CAD) applications, jumpstarts design workflows, delivers a richer visual experience and brings the real world into the AutoCAD canvas. Create stunning designs with AutoCAD design and documentation software. Speed documentation and detailing work with productivity tools, and share your work with TrustedDWG technology. Connect your workflow across integrated desktop, cloud, and mobile solutions. DOWNLOAD LINKS: http://u22088411.letitbit.net/download/87037.8da9c25b5550f8abd564fd425157/ad.ACAD2015Por.part1.rar.html http://u22088411.letitbit.net/download/30448.3cd87b2b632232a07da62b10fed8/ad.ACAD2015Por.part2.rar.html http://u22088411.letitbit.net/download/67166.61a30b7fdbeb1d41cd3ad2767ad6/ad.ACAD2015Por.part3.rar.html http://u22088411.letitbit.net/download/95692.9b015789b2702b0c191038b03ac7/ad.ACAD2015Por.part4.rar.html http://u22088411.letitbit.net/download/44525.44dd1afaeceb595fe6bbca52373f/ad.ACAD2015Por.part5.rar.html http://rapidgator.net/file/9aacc5bf24592234d368f08a1b445e8d/ad.ACAD2015Por.part1.rar.html http://rapidgator.net/file/ce271556552a7d8ae94c01e58eff7f65/ad.ACAD2015Por.part2.rar.html http://rapidgator.net/file/ddae39cd62e315a6d4f62084e75aee72/ad.ACAD2015Por.part3.rar.html http://rapidgator.net/file/b05709113671f0f0cd9e650f1e95cc31/ad.ACAD2015Por.part4.rar.html http://rapidgator.net/file/a43a36133d2cd632fd2461f9d273da8b/ad.ACAD2015Por.part5.rar.html http://u18391561.shareflare.net/download/21157.2ab4d43d1d6f757a4addfd56a061/ad.ACAD2015Por.part1.rar.html http://u18391561.shareflare.net/download/01503.0c01161f0abd53db5cc602228ee8/ad.ACAD2015Por.part2.rar.html http://u18391561.shareflare.net/download/79623.777e92e35b95a10dbbefea63075a/ad.ACAD2015Por.part3.rar.html http://u18391561.shareflare.net/download/60502.663001c8fd0733d53ab5e42b5a6c/ad.ACAD2015Por.part4.rar.html http://u18391561.shareflare.net/download/12946.179a8557e9a1eb104dd18e1a4cde/ad.ACAD2015Por.part5.rar.html
  7. Autodesk Maya 2015 (x64) ISO Autodesk Maya 2015 (x64) ISO | 1.85 GB Autodesk Maya 3D animation software offers a comprehensive creative feature set for 3D computer animation, modeling, simulation, rendering, and compositing on a highly extensible production platform. Maya now has next-generation display technology, accelerated modeling workflows, and new tools for handling complex data. AUTODESK.MAYA.V2015.WIN64-ISO DOWNLOAD LINKS: http://u19822771.letitbit.net/download/72112.702abf15a9ae9b838c4d173e1753/58.Autodesk.Maya.2015.part1.rar.html http://u19822771.letitbit.net/download/42377.4610e822fe8f7dae0ef407e24dbd/58.Autodesk.Maya.2015.part2.rar.html http://u19822771.letitbit.net/download/79337.7bfe07cd058292ee752b3c959004/58.Autodesk.Maya.2015.part3.rar.html http://uploaded.net/file/n22zhoat/58.Autodesk.Maya.2015.part1.rar http://uploaded.net/file/d161iiy1/58.Autodesk.Maya.2015.part2.rar http://uploaded.net/file/cvaa1xwb/58.Autodesk.Maya.2015.part3.rar http://rapidgator.net/file/8b85da5ff9a700944a9fbdb5520d6ee9/58.Autodesk.Maya.2015.part1.rar.html http://rapidgator.net/file/7048f0be7900336207837456a3c8d66e/58.Autodesk.Maya.2015.part2.rar.html http://rapidgator.net/file/c43851231a38cba7e48fbde9e39dc4a9/58.Autodesk.Maya.2015.part3.rar.html http://www.uploadable.ch/file/xH7twz82nGkm/58.Autodesk.Maya.2015.part1.rar http://www.uploadable.ch/file/FjEwpfRQAt6R/58.Autodesk.Maya.2015.part2.rar http://www.uploadable.ch/file/2taFTR8Kv5Tf/58.Autodesk.Maya.2015.part3.rar
  8. Ubuntu GamePack 13.10 (2014)[X86, x64] Ubuntu GamePack 13.10 (2014)[X86, x64] | 3.06 GB Modern operating system is unthinkable without the games, and Ubuntu is no exception. For many people, the biggest obstacle in the transition from Windows to Ubuntu was just the game, or rather the lack of good games. Now, thanks to Ubuntu GamePack this big gap disappearing. Ubuntu distribution GamePack 13.10 - an operating system based on Ubuntu, which will provide a guaranteed launch more than 1880 games like the original, designed specifically for the platform GNU / Linux, and a significant number of games for MS Windows. This distribution is based on Ubuntu OEM and includes all of its features, and contains: ? three delivery systems of games and applications via the Internet: - Steam - service digital distribution of computer games and programs. (More than 300 games) - Desura - digital distribution platform to download and install the games, as well as modifications to them. (More than 460 games) - Djl - manager games. This is an open alternative systems such as Steam u Desura. (More than 120 games) ? means to run Windows-based games: - PlayOnLinux - The application provides a guaranteed job, more than 650 Windows-Games - WINE - application allows you to run Windows-games. Number of Windows-run games in this application depends on your ability to run them. ? in the distribution includes support Java, which will allow without any problems run a large number of online-games. ? connected one of the largest repositories with a collection of different games. (More than 350 games) DOWNLOAD LINKS: http://u19822771.letitbit.net/download/92209.905c6c61dfd1e691cbdb2c8b1dae/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part1.rar.html http://u19822771.letitbit.net/download/70781.7dc21a0ea8635301b2a5d7f25498/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part2.rar.html http://u19822771.letitbit.net/download/13621.1f5c40eaf863affc51f80aef7045/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part3.rar.html http://u19822771.letitbit.net/download/38487.3be3d888cd05c048100d63247ad2/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part4.rar.html http://u19822771.letitbit.net/download/57806.54f1f6d56a955a04a453df82353a/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part5.rar.html http://u19822771.letitbit.net/download/05463.05b517f8dc8ce4987438a54bbe6c/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part6.rar.html http://uploaded.net/file/n83qygvd/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part1.rar http://uploaded.net/file/5wm0vpl7/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part2.rar http://uploaded.net/file/9vdmda4w/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part3.rar http://uploaded.net/file/cfwmc9ym/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part4.rar http://uploaded.net/file/t2zjgy16/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part5.rar http://uploaded.net/file/p2dp18e6/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part6.rar http://rapidgator.net/file/6b42ce790dde551135e092f7345f632b/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part1.rar.html http://rapidgator.net/file/b57f8377e73e8a120cd8a55fb142f31d/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part2.rar.html http://rapidgator.net/file/b9fa7461034240782d0862c8df172ed4/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part3.rar.html http://rapidgator.net/file/e1581891961fbc245f14f9c3ba190b29/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part4.rar.html http://rapidgator.net/file/817e769260933653a5ff4e5916313c11/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part5.rar.html http://rapidgator.net/file/08d10ff34ecfe5dffbd0e5dd2c4083c2/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part6.rar.html http://www.uploadable.ch/file/KbMAJr2FraDD/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part1.rar http://www.uploadable.ch/file/c3gWyUeu5ZNv/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part2.rar http://www.uploadable.ch/file/xJgwCNDemrmP/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part3.rar http://www.uploadable.ch/file/ESetBZtNtp22/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part4.rar http://www.uploadable.ch/file/cNx68UePndtc/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part5.rar http://www.uploadable.ch/file/xrQn9tWYabR4/q672y.Ubuntu.GamePack.13.10.2014.X86.x64.part6.rar
  9. Unity3d 5.0.0b1 x64 [2014, ENG] Unity3d 5.0.0b1 x64 [2014, ENG] | 1.53 GB We are staying true to their desire to carry weight in the technology of high-quality, multi-platform game engine and efficient. We continue to focus on providing even better workflow, further optimizations and features, giving you the creative freedom to raise game development to new heights. So what's new? In Unity, we provide you with 5 physical shaders, global illumination in real-time on mobile devices, the highest level of desktop platforms and consoles, excellent audio system, 64-bit editor and much, much more. VYSOKOKACHESTENNYE shaders FOR ALL We provide all the benefits of physical shaders Unity. SYSTEM GLOBAL LIGHTING LIVE introduce a system of global illumination in real-time based on the Enlighten for modern mobile platforms, and not only, we have raised the bar for just a few units. REVOLUTION IN GAME AUDIO SYSTEM Imagine a gaming system of your dreams, then add to it something -What. This is our vision of audio in Unity 5, and we have already implemented a lot. webgl Get deployment WebGL in one click: available free of charge in Unity 5. EDIT 64-bit UNITY If you are using Unity for large projects, you'll definitely enjoy our new 64-bit editor. LIGHT CROSS Trade on mobile platforms With module Unity Ads you get a solid cross-platform promotion, which is incredibly easy to start and is already integrated into the editor Unity. And that's not all effectors 2D-physics PhysX 3.3 new queue Streaming levels Support SpeedTree New Mecanim Inspector plugins updates Navmesh Incremental loading of resources Extras. Information : Tablet from Valera3132. Very clean and simple! I'm on my Russian is not so well know. But I am sure that everything will be okay! worked to "Dynamic GI" make your objects "Static" objects. Present System requirements : OS: Windows XP SP2 +, 7 SP1 +, 8; Mac OS X 10.6+. Windows Vista is not supported; and Server versions of Windows & OS X are not tested. GPU: Graphics card with DX9 (Shader model 2.0) capabilities. Anything made ??since 2004 should work. DOWNLOAD LINKS: http://u19822771.letitbit.net/download/17129.1f84a4cbeee20700d9a5294c66b8/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part1.rar.html http://u19822771.letitbit.net/download/16861.141d2e8a91e68ecc19a50a537a7d/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part2.rar.html http://u19822771.letitbit.net/download/74104.710f54a7ab8d832dbaebcbf3c567/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part3.rar.html http://u19822771.letitbit.net/download/26236.2beb0114c36e431ed9c41c08d0ec/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part4.rar.html http://u19822771.letitbit.net/download/60675.69f8a11171774dfca2457380391b/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part5.rar.html http://uploaded.net/file/gi5u4yvq/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part1.rar http://uploaded.net/file/lsg7gj6y/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part2.rar http://uploaded.net/file/b68y4d4d/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part3.rar http://uploaded.net/file/8ya1aoh7/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part4.rar http://uploaded.net/file/ey6kbnc6/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part5.rar http://rapidgator.net/file/b066980dafbd3da031b089ea8e5e47d9/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part1.rar.html http://rapidgator.net/file/99aba50a56152c3821054de35fe2f882/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part2.rar.html http://rapidgator.net/file/6116b559bb351d47863bdf1e06db583a/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part3.rar.html http://rapidgator.net/file/fb8bc6881eab8ca6946d4b649d8c4c91/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part4.rar.html http://rapidgator.net/file/bc3fc43f1db4faa8ee0cde72b7625a49/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part5.rar.html http://www.uploadable.ch/file/tSs5Bp6gMrVW/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part1.rar http://www.uploadable.ch/file/HjeuzZMG9shk/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part2.rar http://www.uploadable.ch/file/EhJhRkJM2KsR/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part3.rar http://www.uploadable.ch/file/xmxCxzAXA3ZY/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part4.rar http://www.uploadable.ch/file/hYWz72fNnwMG/g8i51.Unity3d.5.0.0b1.x64.2014.ENG.part5.rar
  10. DFMPro 3.5 x86 & x64 for Creo-NX-ProE-SolidWorks DFMPro 3.5 x86 & x64 for Creo-NX-ProE-SolidWorks | 482 MB DFMPro is a CAD integrated Design for Manufacturability & Assembly (DFM/A) solution which allows the designer to check his designs for producibility. DFMPro assists design engineers in identifying features of a design which are difficult, expensive and impossible to manufacture, at the design stage itself. This helps in avoiding downstream issues which impact cost, quality and time to market. DFMPro covers various commonly used manufacturing processes like machining (milling, turning, drilling), injection molding, casting, sheet metal fabrication and assembly. Today design engineers spend around 30% or higher on rework due to an iterative product development process which impacts costs and time to market. Organizations typically have manual design review processes which include filling checklists, referring handbooks, one to one discussions etc. which differ from department to department. Most of these manual checks are time consuming and error prone. DFMPro tackles this problem by automating the review process within the CAD environment itself, so that the designer can take corrective action without multiple rounds of design iterations. DFMPro provides pre-configured as well as custom design guidelines and global best practices in the industry in the form of rules. The rules are derived from design handbooks and guidelines from industry associations. The rules take into account various Design for 'X' (DFX) issues which typically occur later in product lifecycle such as serviceability, assembly etc. The existing set of rules can be easily customized as per the organization specific standard. DOWNLOAD LINKS: http://u19822771.letitbit.net/download/94303.92b54d6aa6d14bc4b5709d6841e1/DFMPro_3.5_x86___x64_for_Creo-NX-ProE-SolidWorks.rar.html http://uploaded.net/file/5nqhllfl/DFMPro_3.5_x86_%26_x64_for_Creo-NX-ProE-SolidWorks.rar http://rapidgator.net/file/19cb8d54a8f8b0cba5d82dac5c08f011/DFMPro_3.5_x86_&_x64_for_Creo-NX-ProE-SolidWorks.rar.html http://www.uploadable.ch/file/3yVpzbmWtmSx/DFMPro_3.5_x86_&_x64_for_Creo-NX-ProE-SolidWorks.rar
×
×
  • Create New...