> For the complete documentation index, see [llms.txt](https://www.pentestwiki.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pentestwiki.com/data-theft/file-transper/zip.md).

# ZIP

HTTP/S 통신에서 접속한 경로에 압축 확장자가 있다면 접속하는 즉시 파일이 다운로드 됩니다. 서버에 웹 서비스가 있거나 파이썬 등을 통해 실행할 수 있다면 압축 파일을 통해 파일을 가져올 수 있습니다.

{% tabs %}
{% tab title="Windows" %}

<pre class="language-powershell"><code class="lang-powershell"><strong># 파일 압축
</strong>Compress-Archive -Path ".\Credential.txt" -DestinationPath ".\Credential.zip"
</code></pre>

{% endtab %}

{% tab title="UNIX" %}

<pre class="language-bash"><code class="lang-bash"><strong># 파일 압축
</strong>zip Credential.zip Credential.txt 
</code></pre>

{% endtab %}
{% endtabs %}

<figure><img src="/files/UbLF60J0dyTtFRVKJgXZ" alt=""><figcaption><p>웹 주소 접속 시 자동으로 파일 다운로드</p></figcaption></figure>
