Git Product home page Git Product logo

fuu's People

Contributors

uliches avatar

Watchers

 avatar

fuu's Issues

Windows installer not working in Vista and above

What steps will reproduce the problem?
1.Double click on the installer
2.Click "next" as many times as needed
3.???
4.PROFIT!

What is the expected output? What do you see instead?

It's expected to see the UAC prompt before the installer is run. Instead no 
prompt is shown, and the installer breaks due to lack of permissions to write 
on the filesystem.

What version of the product are you using? On what operating system?

Latest as of now, downloaded from the project "Downloads" tab. (I haven't 
tested trunk yet).

Original issue reported on code.google.com by [email protected] on 27 Sep 2011 at 2:51

UPX Problem with dll

Is seems that current version of the UPX Plugin is not re-building the IAT in 
the correct way.

This issue was reported by ErickSoft.

Original issue reported on code.google.com by [email protected] on 10 Jul 2010 at 6:20

Attachments:

Issue with plugins options

Por cierto haciendo los cambios en la versión de 64bits he visto un posible 
error en la de 32bits, concretamente en esta parte

invoke IsDlgButtonChecked, hWin, RealignPECheckBox
.if eax != TRUE
   mov eax, dword ptr[OptionsArray]
   mov dword ptr[eax], 0
.endif 
invoke IsDlgButtonChecked, hWin, CopyOverlayDataBt
.if eax != TRUE
mov eax, dword ptr[OptionsArray+4]
mov dword ptr[eax],0
.endif

Primero de todo que no sería TRUE, sería BST_CHECKED
Pero sobre todo que tu partes de la inicialización del vector a 1. Y cuando 
ejecutas el plugin corriges con 0 según esté desmarcada la opción.

Si no cierro el FUU, cambio las opciones y vuelvo a ejecutar un plugin, los 
cambios no se quedan reflejados. 

En 64bits he cambiado esto por:

invoke IsDlgButtonChecked, hWin, RealignPECheckBox
@IF <<cmp eax,BST_CHECKED>>,EQUAL?  
mov rax, qword ptr[OptionsArray]
mov dword ptr[rax],1
@ELSE
mov rax, qword ptr[OptionsArray]
mov dword ptr[rax],0
@ENDIF
invoke IsDlgButtonChecked, hWin, CopyOverlayDataBt
@IF<<cmp eax,BST_CHECKED>>,EQUAL?
mov rax, qword ptr[OptionsArray+8]
mov dword ptr[rax],1
@ELSE
mov rax, qword ptr[OptionsArray+8]
mov dword ptr[rax],0
@ENDIF

note: found by Guan de Dio.

Original issue reported on code.google.com by [email protected] on 12 Jul 2010 at 5:08

Feature suggestion: add support for UPX 0.80-0.84

Those UPX versions can't be unpacked with the UPX command line tool, so it'd be 
nice to have them supported in FUU.

An example of a packed binary is the exectuable of the newest version of XChat 
on Windows.

Original issue reported on code.google.com by [email protected] on 27 Sep 2011 at 2:48

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.