Como extrair o ZIP do exe auto-extraível?

14

Bem, o assunto diz tudo. Eu tenho um exe que é um SFX, e eu quero extrair o ZIP do SFX. Como posso fazer isso?

    
por TCS 22.09.2011 / 09:59

7 respostas

13

O 7-Zip deve ser capaz de fazer isso. Você pode clicar com o botão direito do mouse no arquivo e selecionar "Abrir arquivo" ou navegar até o arquivo dentro do 7-Zip e clicar com o botão direito do mouse e selecionar "Abrir no interior".

    
por 22.09.2011 / 10:14
6

No Linux, é possível com o utilitário "zip":

$ file london_f.exe
london_f.exe: PE32 executable for MS Windows (GUI) Intel 80386 32-bit

Aviso: a próxima linha altera o arquivo .exe original para torná-lo um arquivo zip puro sem as partes exe!

$ zip -J london_f.exe
$ file london_f.exe
london_f.exe: Zip archive data, at least v1.0 to extract
$ zip --version
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
This is Zip 3.0 (July 5th 2008), by Info-ZIP.
Currently maintained by E. Gordon.  Please send bug reports to
the authors using the web page at www.info-zip.org; see README for details.
...
    
por 03.04.2014 / 14:37
1

No Linux, se for teimoso e

zip -J file.exe

não o transforma em um zip extraível porque a parte não-zip não é apenas prefixada, consulte a página de manual:

   -J
   --junk-sfx
          Strip any prepended data (e.g. a SFX stub) from the archive.

o utilitário zip tem duas outras opções úteis:

   -F
   --fix
   -FF
   --fixfix
          Fix the zip archive. The -F option can be used if some portions of the archive are missing, but requires a reasonably intact  central  directory.   The
          input archive is scanned as usual, but zip will ignore some problems.  The resulting archive should be valid, but any inconsistent entries will be left
          out.

          When doubled as in -FF, the archive is scanned from the beginning and zip scans for special signatures to identify the limits between the archive  mem‐
          bers. The single -F is more reliable if the archive is not too much damaged, so try this option first.

          If  the  archive is too damaged or the end has been truncated, you must use -FF.  This is a change from zip 2.32, where the -F option is able to read a
          truncated archive.  The -F option now more reliably fixes archives with minor damage and the -FF option is needed to fix archives where -F  might  have
          been sufficient before.

          Neither  option  will recover archives that have been incorrectly transferred in ascii mode instead of binary. After the repair, the -t option of unzip
          may show that some files have a bad CRC. Such files cannot be recovered; you can remove them from the archive using the -d option of zip.

          Note that -FF may have trouble fixing archives that include an embedded zip archive that was stored (without compression) in the archive and, depending
          on the damage, it may find the entries in the embedded archive rather than the archive itself.  Try -F first as it does not have this problem.

          The format of the fix commands have changed.  For example, to fix the damaged archive foo.zip,

                 zip -F foo --out foofix

          tries  to read the entries normally, copying good entries to the new archive foofix.zip.  If this doesn't work, as when the archive is truncated, or if
          some entries you know are in the archive are missed, then try

                 zip -FF foo --out foofixfix

          and compare the resulting archive to the archive created by -F.  The -FF option may create an inconsistent archive.  Depending on what is damaged,  you
          can then use the -F option to fix that archive.

          A split archive with missing split files can be fixed using -F if you have the last split of the archive (the .zip file).  If this file is missing, you
          must use -FF to fix the archive, which will prompt you for the splits you have.

          Currently the fix options can't recover entries that have a bad checksum or are otherwise damaged.

Então, tente

zip -F file.exe --out extracted.zip

e se isso falhar

zip -FF file.exe --out extracted.zip
    
por 16.03.2017 / 23:50
0

Você pode abrir um arquivo SFX com o WinZip se quiser acessar os arquivos nele. Você não precisa executar o arquivo.

Parece que vários outros utilitários de compactação também abrirão arquivos SFX.

    
por 22.09.2011 / 10:07
0

Eu tive um problema semelhante, um executável SFX, que basicamente roda um exe que permite que você execute os arquivos dentro do arquivo. Abrindo exe em 7zip mostra protegido por senha. Eu procurei por uma solução, ele deve armazenar a senha em algum tipo de cabeçalho ... Ao ler este segmento uma solução alternativa me ocorreu.

Execute o exe e, em seguida, marque C: \ windows \ temp, classifique por data e encontre a pasta para a qual o exe foi extraído, os arquivos dentro do zip. Tire-os e feche-os. Viola! você tem um zip do exe, sem senha.

    
por 31.12.2013 / 17:44
0

Ainda estou para ver um programa de manipulação de zip que não pode fazer isso. Os arquivos auto-extraíveis também são arquivos zip válidos, apenas com um monte de coisas extras neles (o extrator).

Você provavelmente descobrirá que não é possível selecionar o utilitário como uma maneira de abrir o arquivo, mas se simplesmente executar o utilitário e selecionar o arquivo que ele funciona.

    
por 17.03.2017 / 01:48
0

Se você estiver lidando com jogos do gog.com, use Innoextract . unzip , unrar , 7zip e outros não funcionaram para mim.

    
por 14.07.2017 / 20:25