Translate

2017年3月12日星期日

使谷歌硬盤無限空間的方法

每一个大学生 可用存储空间是无限的。
視頻:https://www.youtube.com/d490c66f-9e85-419b-83b9-5b4875814df7
谷歌应用服务教育是为学生和教育工作人员的程序。必须使用谷歌的服务不收费的机会。在教育本身的范畴,无论是教室,邮件,日历,文档,表格,幻灯片等等。








我认为这是一个很好的协议。
无限存储于谷歌驱动器
我们可以将文件上传到谷歌上云端硬盘存储空间有无限的空间。
但在此之前,你使用它。要激活(第一批),但通过以下步骤。

1.登陆网站 http://portal.cmu.ac.th

2.单击  电子学习由谷歌应用服务教育或访问链接。 https://signup-elearning.cmu.ac.th

3.向下滚动,然后点击  申请时使用CMU IT ACOOUNT。


4.输入您的帐户CMU IT客户(name_ @ cmu.ac.th),然后点击注册。

5.当消息  您的帐户已被创建。点击  SIGN IN WITH CMU IT ACCOUNT




6.現在登錄




7.阅读使用条款。然后点击Accept按钮
8.進入郵箱查看郵件
9.尝试点击“USED 0 GB”  成交。

这意味着你可以将文件上传到无限的空间,但!限于单个文件大小不能超过5 TB /文件(这不会上传大文件这样的,也许。互联网继续现在上传large'm搞不清=)。
要访问谷歌驱动器是不是从右边的菜单访问。如图所示下方


2016-07-05_17-18-22
或者通过链接 https://drive.google.com  直接(登录再经过)了。
2016-07-05_17-20-31
2016-07-05_17-22-16
事实并非如此肯定CMU。启用谷歌Apps for Education的是很长一段时间。我看到今天上午在Facebook上张贴的朋友。写点这件事。我希望每个人都具有相同的值。认为它全心全意ฮ我们的EAA都意识到这四年多的几乎没有使用的-.-服务费的。
技术信息
在CMU。已启用的Microsoft Office 365域cmu.ac.th下合规尚未同一个域下启用谷歌教育。如果启用的Office 365,那么你将不得不使用一个不同的域或子域,它试图当你看看哦..现在,CMU,你不能使用谷歌应用后cmu.ac.th。子域名下的教育 相反,elearning.cmu.ac.th
PS。 学生不知道CMU IT账户已经结束。这也适用于我。但要尽量考虑到朋友码56岫尝试合酶。它也有曲折 难怪他们删除。
更新日期:59年7月6日13:33 AM。
分享这篇文章后出来。我不得不集中了很多。这里查看瓦洛普 我几乎没有在这里 谢谢大家从心脏 我对使用了大量的更像是一个传统的帐户的问题。(学号@ cmu.ac.th)不起作用。是否以上的问题,也是积极那里。所以,我从页面抓取并要求CNOC ITSC具有以下信息。
问:谷歌应用服务的CMU的教育已经长了吗?
谷歌应用服务的CMU的教育。最近近日开业,这是它。在CMU,关系还没有开始的。但是,我们提前推前,我写这篇文章来介绍它。
2016-07-06_13-26-43
问:帐户岁。(学号@ cmu.ac.th)为什么不工作?
旧账。(学号@ cmu.ac.th)学生守则55 54 53 ..到它,你将不能够使用CMU。包括与谷歌Apps for Education中的服务。
2016-07-06_13-25-51
使用迁移从旧帐户更改。(学号@ cmu.ac.th)在场。(姓名,姓_ @ cmu.ac.th),它可以在此链接来完成。 https://account.cmu.ac.th/Migration
2016-07-06_13-27-44
问:什么是结束了,仍然有效。该文件已被上传到输吗?
目前,这是可以做到.. 至于谁从CMU毕业。招生。“仍然有效”,可通过已上传到谷歌驱动器,除非有在以后的使用的改变不会去上的文件无限期使用。




2017年3月5日星期日

[root-me]Known plaintext - XOR

video:https://www.youtube.com/watch?v=1v4_dSQxoDI&feature=youtu.be&a

picture is better then the words










password:ICONOCLASTE



download xortool:
xortool requires docopt python dependency:
$ sudo pip install docopt
Then install xortool:
$ cd /data/src/
$ git clone https://github.com/hellman/xortool.git
$ cd xortool/
$ sudo python setup.py install

or

http://tw.softoware.net/apps/download-remnux-for-linux.html

or

  • download xortool from: https://github.com/hellman/xortool
  • in xortool directory run python setup.py install
  • run xortool -b ch3.bmp in terminal
  • wait until the process gives you a *.bmp image in the output directory
  • The encryption key is fallen

or

1 Lets get the key : 
using a hex editor from the header of the image we can see the key wich is : fallen
2 Lets decrypt the image : 
now you have the key you can use many tool that decrypt XORed files or you can use this python script below :
  1. from PIL import Image
  2. key = 'fallen'
  3. cypher = bytearray(open("ch3.bmp", "rb").read())
  4. for i in range(len(cypher)):
  5. cypher[i] ^= ord(key[i%len(key)])
  6. open("out.bmp","wb").write(cypher)
  7. try:
  8. im = Image.open("out.bmp")
  9. im.verify()
  10. except IOError:
  11. print 'Oopss something went wrong'
  12. else:
  13. print 'done'

2017年3月4日星期六

[root-me]Cryptanalyse All Raiders

    33 Challenges
    1. Encoding - ASCII         
    2. Encoding - UU                     https://goo.gl/WYQCy6
    3. Hash - Message Digest 5               https://goo.gl/EZ98Oc
    4. Hash - SHA-2                      https://goo.gl/oM4Exh
    5. Shift cipher                      https://goo.gl/JwXGQH
    6. Pixel Madness                     https://goo.gl/Mmcfbn
    7. ELF32 - PID encryption
    8. File - PKZIP                      https://goo.gl/qai0xk
    9. Monoalphabetic substitution - Caesar
    10. Known plaintext - XOR                https://goo.gl/s1Tyck
    11. Code - Pseudo Random Number Generator
    12. File - Insecure storage 
    13. Polyalphabetic substitution - Vigenère
    14. System - Android lock pattern
    15. Transposition - Rail Fence
    16. AES - ECB
    17. RSA - Factorisation
    18. Service - Timing attack
    19. Monoalphabetic substitution - Polybe
    20. Initialisation Vector
    21. GEDEFU
    22. RSA - Continued fractions
    23. RSA - Common modulus
    24. Service - Hash length extension attack
    25. RSA - Padding
    26. AES2 - CTR
    27. Discrete logarithm problem
    28. RSA - Multiple recipients
    29. Enigma Machine
    30. ECDHE
    31. Service - CBC Padding
    32. Polyalphabetic substitution - One Time Pad
    33. Hash - SHA-3

                                                              [root-me]Web - Serveur All Raiders

                                                              48 Challenges

                                                              Customs clearance skills
                                                              root-me 的web-serveur所有通關攻略

                                                              1. HTML
                                                              2. Mot de passe faible
                                                              3. User-agent
                                                              4. Fichier de sauvegarde
                                                              5. HTTP directory indexing
                                                              6. HTTP Headers
                                                              7. HTTP verb tampering
                                                              8. Install files
                                                              9. Redirection in
                                                              10. CRLF
                                                              11. File upload - double extensions
                                                              12. File upload - type MIME
                                                              13. HTTP cookies
                                                              14. Directory traversal
                                                              15. File upload - null byte
                                                              16. PHP assert()
                                                              17. PHP filters
                                                              18. PHP register globals
                                                              19. Local File Inclusion
                                                              20. Local File Inclusion - Double encoding
                                                              21. PHP preg_replace()
                                                              22. PHP type juggling
                                                              23. Remote File Inclusion
                                                              24. Server-side Template Injection
                                                              25. SQL injection - authentification
                                                              26. SQL injection - authentification - GBK
                                                              27. SQL injection - string
                                                              28. LDAP injection - authentification
                                                              29. NoSQL injection - authentification
                                                              30. Path Truncation
                                                              31. PHP Sérialisation
                                                              32. SQL injection - numérique
                                                              33. SQL Injection - Routed
                                                              34. SQL Truncation
                                                              35. XML External Entity
                                                              36. XPath injection - authentification
                                                              37. Java - Spring Boot
                                                              38. Local File Inclusion - Wrappers
                                                              39. SQL injection - Error
                                                              40. SQL injection - Insert
                                                              41. SQL injection - lecture de fichiers
                                                              42. XPath injection - string
                                                              43. NoSQL injection - en aveugle
                                                              44. SQL injection - Time based
                                                              45. SQL injection - en aveugle
                                                              46. LDAP injection - en aveugle
                                                              47. XPath injection - en aveugle
                                                              48. SQL injection - contournement de filtres