rar

黄金6年 [WriteUp]

北战南征 提交于 2020-01-07 07:57:10
只是部分Wp 关于原题目、扫二维码得解压密码等部分请参照其他博客,此篇博客仅记录笔者解题时碰壁的部分。 base64和rar 用010editor查看黄金6年.mp4,拖到最下面发现有需要base64解码。 在kali中进行base64解码并用 hexdump -C 以16进制和ascii码的格式输出在屏幕 echo "UmFyIRoHAQAzkrXlCgEFBgAFAQGAgADh7ek5VQIDPLAABKEAIEvsUpGAAwAIZmxhZy50eHQwAQAD Dx43HyOdLMGWfCE9WEsBZprAJQoBSVlWkJNS9TP5du2kyJ275JzsNo29BnSZCgMC3h+UFV9p1QEf JkBPPR6MrYwXmsMCMz67DN/k5u1NYw9ga53a83/B/t2G9FkG/IITuR+9gIvr/LEdd1ZRAwUEAA==" | base64 -d|hexdump -C 可以看出这个是一个rar文件。 接下来我经过1个半小时的各种尝试,确定只有得到的这个hex是完全正确的,要想保存为正确的rar文件,就要用这段hex,而把base64解码得到的ascii码放到010editor里得到的hex编码会有误。总之使用了各种途径进行解码和生成文件,均失败。最后迫不得已对着kali的输出结果在010editor里新建hex文件后手动输入进去

How to attach a RAR file to an email in c#?

两盒软妹~` 提交于 2020-01-04 02:54:14
问题 I want to send an email that has multiple attachments using the following code but it doesn't work for RAR files. What is the problem? For every attachment I have a class that contains some properties of the attached file and its content: public class AttachmentFile { [StringLength(200)] public string FileName { get; set; } [StringLength(15)] public string Extension { get; set; } [StringLength(100)] public string Signature { get; set; } public byte[] Content { get; set; } [StringLength(500)]

How to extract all multi-volume RAR archives from subfolders of a folder?

大城市里の小女人 提交于 2020-01-03 02:12:51
问题 I search for a way to unpack multi-volume archives after download via batch. I download folders with .r?? files in it over a FTP monitoring program and want that WinRAR goes in the first subfolder in the source folder and start unpacking .r00, delete the archive and move the folder with the unpacked files to a new location. Then the batch script should start this process again with the next subfolder. Let's say the source folder C:\Users\unpack contains following subfolders with files: source

unpacking rar with R system()

三世轮回 提交于 2020-01-02 07:21:11
问题 OK this task seems to be really easy to do. However I spent a couple of hours without any results. User have: 7z Windows R User should enter: path to 7z (z7path) filename System should unpack rar into the project's root I tried: cmd = "C:\\Program Files (x86)\\7-Zip\\7z e D:/20140601.rar" system(shQuote(cmd)) And..nothing happens. Please don't advise to set up PATH, it doesn't help, and this should work without it. 回答1: Ok, I finally got it. Use shell Use shQuote for surrounding path Use

C# Creating and Sending Zip files with gmail

回眸只為那壹抹淺笑 提交于 2019-12-31 03:53:26
问题 I'm trying to Zip and send .csv files using C#. I create the files, zip them and send them using an SMTP Gmail host. It can sometimes take this email several hours to reach it's destination. For testing I am using very small files so size isn't an issue. If I try to "manually" send these zips using gmail I get the following error: "myFile.csv.zip contains an executable file. For security reasons, Gmail does not allow you to send this type of file." I think there might be a problem with my

Linux 下压缩与解压.zip 和 .rar

喜欢而已 提交于 2019-12-28 21:11:19
1)对于.zip linux下提供了zip和unzip程序,zip是压缩程序,unzip是解压程序。它们的参数选项很多,可用命令zip -help和unzip -help查看,这里只做简单介绍,举例说明一下其用法: # zip test.zip test.jpg test.png 这条命令是将test.jpg和test.png压缩成一个zip包 # zip test.zip *.jpg 这条命令是将所有.jpg的文件压缩成一个zip包 # zip -r test.zip test 这条命令是将文件夹test压缩成一个zip包 # unzip test.zip 这条命令是将test.zip中的所有文件解压出来  把/home目录下面的mydata目录压缩为mydata.zip  # zip -r mydata.zip mydata #压缩mydata目录  把/home目录下面的mydata.zip解压到mydatabak目录里面  # unzip mydata.zip -d mydatabak 2)对于.rar 安装: sudo apt-get install rar unrar 或者可从http://www.rarsoft.com/download.htm下载 RAR for Linux 编译安装 # tar -xzpvf rarlinux-3.8.0.tar.gz # cd

RAR archives with java [closed]

泄露秘密 提交于 2019-12-27 22:15:59
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is there a good java API for manipulating RAR archive files someone could recommend? Googling did not turn up anything overwhelmingly

RAR archives with java [closed]

余生颓废 提交于 2019-12-27 22:14:41
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is there a good java API for manipulating RAR archive files someone could recommend? Googling did not turn up anything overwhelmingly

mac解压rar文件

淺唱寂寞╮ 提交于 2019-12-27 02:51:50
安装unrar 基于mac用terminal压缩解压.rar:Permission denied出现问题已解决 解压文件:unrar x 解压文件.rar (参数x代表解压) 来源: CSDN 作者: lancecrazy 链接: https://blog.csdn.net/lancecrazy/article/details/103721890

Python核心技术与实战

二次信任 提交于 2019-12-26 16:33:56
课程目录: 第00课、开篇词丨从工程的角度深入理解Python.rar 第01课、如何逐步突破,成为Python高手?.rar 第02课、Jupyter Notebook为什么是现代Python的必学技术?.rar 第03课、列表和元组,到底用哪一个?.rar 第04课、字典、集合,你真的了解吗?.rar 第05课、深入浅出字符串.rar 第06课、Python “黑箱”:输入与输出.rar 第07课、修炼基本功:条件与循环.rar 第08课、异常处理:如何提高程序的稳定性?.rar 第09课、不可或缺的自定义函数.rar 第10课、简约不简单的匿名函数.rar 第11课、面向对象(上):从生活中的类比说起.rar 第12课、面向对象(下):如何实现一个搜索引擎?.rar 第13课、搭建积木:Python 模块化.rar 第14课、答疑(一):列表和元组的内部实现是怎样的?.rar 第15课、Python对象的比较、拷贝.rar 第16课、值传递,引用传递or其他,Python里参数是如何传递的.rar 第17课、强大的装饰器.rar 第18课、[名师分享] metaclass,是潘多拉魔盒还是阿拉丁神灯?.rar 第19课、深入理解迭代器和生成器.rar 第20课、揭秘 Python 协程.rar 第21课、Python并发编程之Futures.rar 第22课