# What isn't allowed?

Malware/Viruses, Spam, Child Pornography, anything malicious or with malicious intent (i.e. private documents or revenge porn).

We have zero tolerance towards child abuse. We are currently using Cloudlare's CSAM Scanning Tool to proactively identify and take action against any files that match known CSAM
Any amount of CSAM will cause your entire account to be purged.

# What are the allowed extensions here?

We only support the following extensions:
.mp4 .mov .m4v .ts .mkv .avi .wmv .webm .vob .gifv .mpg .mpeg .mp3 .flac .wav .png .jpeg .jpg .gif .bmp .webp .heif .heic .tiff .svf .svg .ico .psd .ai .pdf .txt .log .csv .xml .cbr .zip .rar .7z .tar .gz .xz .tar.gz .tar.xz .iso .torrent .kdbx

Contact us if you would like to request a new filetype.

# How can I contact the site?

[PGP Public Key]
To provide feedback, report abuse or to simply contact us [AUTOMATED DMCA SPAM WILL GET AUTOMATICALLY BLOCKED AND DELETED]: click.me@aaaaaaaa.aaa


  • Do not include thumbnails, site assets (js, css) or a big list of individual file links.
  • Incorrect, invalid, or non-applicable submissions and requests wont be acknowledged.
  • We keep no logs. Accounts require no verification. Don't bother us for data the we don't even have and that you do not deserve.

  • For transparency, a public log of removed files & albums can be found here.

    Will you keep my files forever?

    Yes, we also offer a temporary uploads feature which will automatically delete your files after a certain period of time.
    You can configure this feature through our homepage's config tab.

    # Privacy Policy

    As a condition to using the Service, you agree to the terms of the CyberDrop Privacy Policy as it may be updated from time to time. CyberDrop understands that privacy is important to both us and you. CyberDrop does not collect or store personal identifiable information such as email addresses, IP addresses, browser metadata, etc. We will not share any information with third-parties.
    CyberDrop uses third-party advertising companies to serve ads that may collect data when you visit our web site. These companies may use aggregated information about your visits to this and other web sites in order to provide advertisements on this site, other sites, and other forms of media about goods and services of interest to you


    # Changelog

    v2.0 - [October 16th, 2023]
    • - Completely revamped the file logic.
    • - Added support for multiple servers.
    • - Dashboard album list has been removed, now you have to click on the load albums button.

    # API DOCS

    Please note that our API is currently in BETA and has a MAX UPLOAD SIZE of 100 MB. You will not be able to upload files larger than 100MB.


    REQUIREMENTS FOR ALL API FUNCTIONS

    - Provide your personal token as an HTTP header. Register, and you'll get a token.

    [GET] Available server - https://cyberdrop.me/api/node

            Response:
            {
                "success": true,
                "url": "https://SERVER.cyberdrop.TLD/api/upload"
            }
            


    [POST] Upload Files - https://SERVER.cyberdrop.TLD/api/upload

    Parameters:

            token: YOUR_PERSONAL_TOKEN // required
            albumid: ALBUM_ID // optional
            

            Response:
            {
              "success": true,
              "files": [
                  {
                      "name": "test_file.png",
                      "url": "https://cyberdrop.me/f/file_slug"
                  }
              ]
            }
            


    [GET] Uploaded files - https://cyberdrop.me/api/uploads/PAGE_NUMBER

    Parameters:

            token: YOUR_PERSONAL_TOKEN // required
            
    Example response:
            GET https://cyberdrop.me/api/uploads/0
    
              {
                  "success": true,
                  "files": [
                      {
                          "id": 1330000,
                          "name": "example_file.png",
                          "userid": "99999",
                          "size": 964610,
                          "timestamp": 1701133315,
                          "slug": "UwU",
                          "image": "https://sun-i.cyberdrop.ch",
                          "expirydate": null,
                          "albumid": "99999",
                          "extname": ".png",
                          "thumb": "thumbs/example_file_thumb.png"
                      }
              }