Read these guidelines. Not reading them may get you banned.

While no censorship based on opinion, views, etc. takes place on AnonNews, there are several guidelines in place to keep content on the site relevant. Read these guidelines completely before submitting a press release. Not reading them may get you banned.

This is not a forum. Opinion posts, questions to anons, and other similar things do not belong here. Use the forum.

AnonNews is about Anonymous. While you may think your local political party, a phone tapping scandal, or anything else is important, this is not the place for personal army requests. If you wish to discuss a topic that may be of interest to other anons, you can do so on the forum. If it's not a press release or manifesto from Anonymous, it doesn't belong here - period.

Format your press releases properly. Press releases and manifestos are expected to be readable and in proper formatting. While we certainly don't expect perfect grammar, a press release that uses an abbreviation every other word or contains excessive 'leetspeak' is not going to be accepted. If your press release is in bright pink with images of red flowers on the side, it will probably not be accepted either.

No copypasting. This section is intended for those that wish to submit a press release about an operation they are involved with (not necessarily being part of staff). Don't copypaste news articles or press releases from others that you have nothing to do with. Submitting it for someone else who is involved with an operation, is of course not an issue at all.

You are not the leader of Anonymous. Noone is. Don't try to imply that all of Anonymous agrees with something or condemns it - your press release will be rejected. Unless you have talked through your press release with literally every single anon out there, you cannot speak for all of them. Making a generic 'from Anonymous' statement is fine, as long as you don't try to say that 'person X and operation Y were not Anonymous' or try to impose alleged 'universal values or ideologies' onto Anonymous - they simply do not exist.

On the IP retention policy: we normally do not store IP addresses of anyone submitting content to AnonNews (feel free to use TOR or a proxy to be completely sure). If you hit a spam filter, however (there is almost zero chance for a false positive), your IP may be recorded and banned. If an IP is incorrectly recorded (a false positive) it will be reviewed and removed from the log within 24 hours, without exception.

If you have read the guidelines,

Submit a press release

Press release title

Press release text

To make use of the WYSIWYG editor, Javascript is required. If Javascript is turned off, you can make use of HTML instead - line breaks will automatically be inserted.

Upload an image (optional)

Allowed: PNG, GIF, JPG. Maximum filesize: 20MB. If possible, please use PNG instead of JPG for better image quality.

Tags (optional)

Enter comma-separated tags here, that indicate what the article is about. This will make it easier to find on the site.

Press Release Language

Complete the CAPTCHA


Submitting press release... (this may take a while!)
is_valid) { $error = false; if(isset($_FILES['file']) && $_FILES['file']['error'] == 0) { $file_uploaded = true; if(ends_with($_FILES['file']['name'], ".jpg") || ends_with($_FILES['file']['name'], ".jpeg") || ends_with($_FILES['file']['name'], ".png") || ends_with($_FILES['file']['name'], ".gif")) { if($_FILES['file']['size'] <= 20000000) { $upload_result = curl_put("{$tahoe_server}/uri", $_FILES['file']['tmp_name']); if($upload_result !== false) { $upload_b64 = urlsafe_b64encode($upload_result); $upload_url = "/download/$upload_b64/{$_FILES['file']['name']}"; } } else { $error = true; $var_code = ANONNEWS_ERROR_TOO_LARGE; // Upload filesize error require("module.error.php"); } } else { $error = true; $var_code = ANONNEWS_ERROR_INCORRECT_FORMAT; // Upload file format error require("module.error.php"); } } elseif(isset($_FILES['file']) && $_FILES['file']['error'] == 4) { // No file was uploaded. $file_uploaded = false; } else { $error = true; $var_code = ANONNEWS_ERROR_UPLOAD_ERR; // Generic upload error require("module.error.php"); } if($error === false) { // Either no file was uploaded or the file was successfully uploaded, continue... if(!empty($_POST['title'])) { if(!empty($_POST['body'])) { if($file_uploaded === false) { $upload_url = ""; } $body = $_POST['body']; if($_POST['js_enabled'] === "false") { $body = nl2br($body, false); } $body = mysql_real_escape_string(str_replace("javascript:", "",strip_tags_attributes($body, "



    1. ", "href,src,alt,class,style,align,valign,color,face,size,width,height,shape,coords,target,border,cellpadding,cellspacing,colspan,rowspan"))); $title = mysql_real_escape_string($_POST['title']); $language = mysql_real_escape_string($_POST['language']); $query = "INSERT INTO press (`Name`, `Body`, `CommentCount`, `Deleted`, `Approved`, `Attachment`, `Upvotes`, `Mod`, `ExternalAttachment`, `Language`, `Posted`) VALUES ('{$title}', '{$body}', '0', '0', '0', '{$upload_url}', '0', '', '1', '{$language}', CURRENT_TIMESTAMP)"; if(mysql_query($query)) { $insert_id = mysql_insert_id(); if(!empty($_POST['tags'])) { // tags were entered. $tags = $_POST['tags']; $tags_list = explode(",", $tags); foreach($tags_list as $tag) { $tag = mysql_real_escape_string(trim(clean_tag($tag))); if(!empty($tag)) { $query = "INSERT INTO tags (`Table`, `ItemId`, `TagName`) VALUES ('press', '{$insert_id}', '$tag')"; mysql_query($query); } } } echo("

      Your press release was successfully submitted. It will have to be approved before it appears on the front page.

      << back to front page

      "); } else { echo(mysql_error()); $var_code = ANONNEWS_ERROR_DATABASE_ERROR; // Generic upload error require("module.error.php"); } } else { $var_code = ANONNEWS_ERROR_EMPTY_BODY; // Empty body require("module.error.php"); } } else { $var_code = ANONNEWS_ERROR_EMPTY_TITLE; // Empty title require("module.error.php"); } } } else { $var_code = ANONNEWS_ERROR_INCORRECT_CAPTCHA; require("module.error.php"); } } else { $var_code = ANONNEWS_ERROR_NOT_FOUND; require("module.error.php"); } } } else { $var_code = ANONNEWS_ERROR_BANNED; // Banned from submission. require("module.error.php"); } ?>