Archive for Mystery

A Prime Question

Hey guys, thought I’d quickly dump an application i’m working on that graphs primes as a novelty wave (like mckennas time wave zero I ching hexagram mathematics).

It’s really a hoot. And it wil be interesting to analyse the patterns of  hexagramical novelty in primes further. (block comparison) bit comparison, nth comparison, volume graph comparison. wave comparison.. even considering graphing the grid as a wave form to try and find any resonances. Anyways, lots of odd ideas and stuff.. so on with the code. The intellectual, security, as well as social implications of predicting primes or graphing the novelty of them could very well be the most undervalued cryptography technology there ever could, would or will be. :) very early days yet, this isn’t even my first alpha, just a play in SDL DLL to see what it can do for prime calcs in C++. we’ll see.
sdl c++ code i've been working on the last 24 hours

#include <stdlib.h>
#if defined(_MSC_VER)
#include “SDL.h”
#else
#include “SDL/SDL.h”
#endif
#include<math.h>
#include<iostream.h>

int primes[] = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,

103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,

227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,

353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,

487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,

631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,

773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,

937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,

1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,

1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,

1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,

1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,

1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,

1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,

1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,

1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,

2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,

2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341};

SDL_Surface *screen;

// sprites tutorial but im using DNA sprite
/*
const unsigned char sprite[] =
{

0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0};

void drawsprite(int x, int y, unsigned int color)
{
int i, j, c, yofs;
yofs = y * (screen->pitch / 4) + x;
for (i = 0, c = 0; i < 16; i++)
{
for (j = 0; j < 16; j++, c++)
{
if (sprite[c])
{
((unsigned int*)screen->pixels)[yofs + j] = color;
}
}
yofs += (screen->pitch / 4);
}
}
*/

void putpixel(int x, int y, int color)
{
unsigned int *ptr = (unsigned int*)screen->pixels;
int lineoffset = y * (screen->pitch / 4);
ptr[lineoffset + x] = color;
}

int nextprime(int nth)
{
return primes[nth];
}

void render()
{
// Lock surface if needed
if (SDL_MUSTLOCK(screen))
if (SDL_LockSurface(screen) < 0)
return;

// Ask SDL for the time in milliseconds
int tick = SDL_GetTicks();

// Declare a couple of variables
int i, j, yofs, ofs;

// Draw to screen
/*
yofs = 0;
for (i = 0; i < 480; i++)
{
for (j = 0, ofs = yofs; j < 640; j++, ofs++)
{
((unsigned int*)screen->pixels)[ofs] = i * i + j * j + tick;
}
yofs += screen->pitch / 4;
}
*/

// grid creation

for (int z=0; z < 768 ; z=z+5)
{

for (int y = 0 ; y < 1024 ; y=y+5)
{
putpixel(y, z, 0xff0000);
}

}

/* draw lines in graph

for (int n=1; n < 480; n++)
{
putpixel(2, n, 0xffffff);
}
*/

// draw the first 10 primes
/*putpixel(1,2, 0xffffff);
putpixel(2,3, 0xffffff);
putpixel(3,5, 0xffffff);
putpixel(4,7, 0xffffff);
putpixel(5,11, 0xffffff);
putpixel(6,13, 0xffffff);
*/

// grab nth rotation and the nextprime for the first 10 primes
// x axis = n , y axis = prime
for (int n=0; n < 135; n++)
{

putpixel(n,nextprime(n),0xffffff);
}

// method 2 and an idea on ‘block correlation’
// measure the block correlation between the previous n prime 0-125 to u prime 125-200 , and comparing block starting at
// correlation axis (i.e. x,125px)(correlate correction for nextprime(correlation)
// x axis = u(aka n), y axis= prime)
int correlation;
for (int u=125; u<200; u++)
{
correlation = u - 125;
putpixel(nextprime(correlation),u,0xffffff);
}

// Unlock if needed
if (SDL_MUSTLOCK(screen))
SDL_UnlockSurface(screen);

// Tell SDL to update the whole screen
SDL_UpdateRect(screen, 0, 0, 1024, 768);
}

// Entry point
int main(int argc, char *argv[])
{
// Initialize SDL’s subsystems - in this case, only video.
if ( SDL_Init(SDL_INIT_VIDEO) < 0 )
{
fprintf(stderr, “Unable to init SDL: %sn”, SDL_GetError());
exit(1);
}

// Register SDL_Quit to be called at exit; makes sure things are
// cleaned up when we quit.
atexit(SDL_Quit);

// Attempt to create a 640×480 window with 32bit pixels.
screen = SDL_SetVideoMode(1024, 768, 32, SDL_SWSURFACE);

// If we fail, return error.
if ( screen == NULL )
{
fprintf(stderr, “Unable to set 640×480 video: %sn”, SDL_GetError());
exit(1);
}

// Main loop: loop forever.
while (1)
{
// Render stuff
render();

// Poll for events, and handle the ones we care about.
SDL_Event event;
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_KEYDOWN:
break;
case SDL_KEYUP:
// If escape is pressed, return (and thus, quit)
if (event.key.keysym.sym == SDLK_ESCAPE)
return 0;
break;
case SDL_QUIT:
return(0);
}
}
}
return 0;
}

Comments

Efficiently using Data

This is a favourite topic of mine, in fact, most of my favourite topics involve some efficiency, efficacy or a tumbling tantrum of some kind. This post is about an important abstraction that free-thinkers, security personnel, and contractors all should be aware of.

Sometimes the information you know that isn’t relevant, identifies what is

Have you ever heard the saying of? It’s easier to write down all the people not attending than the people attending, or vice versa? It’s a logical abstraction we all live with, and use on a daily basis. Then again, it’s not really something we understand. Mainly because not many people stop for a moment to think about what really is occuring.

Again, it’s the difference between painting most of a black peice of paper white to see black text and painting a little bit of text on a sheet of paper thats white already.

There is a major factor of economy, usability, functionality & most importantly of all, it affects the difficulty of implementation. This sort of abstraction is worth using in day to day life.

It’s pretty strange really because this seems such a similar topic as my macroverse and microverse theory. It’s a pivotted, balanced, closed system. However, the “way” in which you close it is, optional. I like that in a topic.

Peace,
A

Comments

Life on Mars?

Well, we all know the evercommon “oldies flicks” that talk about aliens from mars, invasions from mars, but that’s all just fiction, right? Right? Who knows, have you been there yourself? Theres likely to be life all over the universe as it is found atypically in meteors; so, the science exists, the smoking gun proof doesn’t. So why does science oppose the idea so fundamentally when there is more proof suggesting that it’s possible than disproving life elsewhere in the solar system and universe? Well, that one’s got me. I’ve no idea. Wish I did. Checkout this picture of a supposed bi-pedal alien life form on mars. I’ll let you decide for yourself. One thing however is certain, there are many strange things that “must be accounted for”; I would rather spend some time accepting their existance than struggling to “account for why they exist”, would you?

Alien Life on Mars proof

Comments

Privacy? What Privacy! The Illusion of Justification or Idealism?

Introduction

Having lived in Britain my whole life and aspired to live as a thinker, philosophiser, technician, developer, manager, project manager, liason, scientist, spiritualist, conspiracist and contrived myself towards a more `new age` look at modern sociopolitical concepts I have found myself uncovering remarkable tidbits of concept, ideas and political flim flam.

Privacy Central and the Anonymous World
For instance, under both US and EU law a common statute of privacy is established for the individual, however contrarily the modern development of computer tagging systems, highly sophisticated imaging systems, Retina scanners, genetic profiling, detailed census profiling (e.g. compulsory personal US census programme), search engines, and most importantly service based interconnectivity leave much to be admired. Being anonymous is a practical impossibility, for the average human being and the over-average cracker genius. Why we ask? Well, the way the internet works, and the way people get it, and specifically, the interdependance of intercommunications. Some may say “what say you azio?” - “what does that even mean?” - it goes, well, something like this. You get your internet through an ISP, and they most likely get their global internet coverage (known as partial or global routes in a route table for differing allocations of the internet) via someone else (or many groups or exchanges). Of course we have all seen films that make melodrama of the idea and make it look like simplicity, it really isn’t simple. We need to consider that no one business or government owns the `internet`, owns the fibre or phonelines laid in your street; but, we all have an interdependancy on those systems, and their respective dependant systems. Security and privacy wise this says “DANGER” and nothing less. This says no privacy.

A work that is in progress

Although my research still bears the label of an `early work` having worked with basic routing, switching, and along with other commercial ISP’s it became a quick lesson that there is, at nearly all times for a extraordinarily large amount of people - more than just the lack of privacy - but a system that independantly or collectively monitors user patterns and activity. So much so that, using a HTTP proxy is no longer safe, so much so that using even a remote dns server _SELF OWNED_ by yourself still permits a security risk. “Why?” the reader asks. I answer, because that is the nature of the internet. It is a particularly erroneous claim (and idea) that seems to have been *HIGHLY* circulated in recent and older times, the internet is anonymous. Facts say something totally different, the internet is _NOT_ anonymous, whatsoever. Infact the whole system of DNS and IP/MAC translation allows the ability for specific tracking of the majority of users. All IP (Internet-Protocol) addresses ipv4 of ipv6 are binded to unique MACID’s in hardware NIC’s (Network Interface Cards), wireless cards - even telephone systems and a multitude of other devices. A specific unique identifier for communication, of course, and uniquely the best, most expert way to track anyone, anywhere in the world. So much so that MACID’s can be traced to Credit Cards, which can be traced to people, which can be traced to their bank, their business, their family, friends and their Internet Service Provider.

Expression is pointless in an anonymous society?


Freedom
, Privacy and the Data Protection Act
The whole idea of the all seeing eye of Echelon (An unacknowledged system which makes attempts at monitoring all intercommunication systems such as satellite, radiowave, microwave, optical, bnc and hardwire communications - is not a new concept. However, the idea of the internet being wholely un-anonymous and modern systems being actively in breach of peoples basic human rights and the DPA is a new idea; an idea based solely on the assumption of misuse of data, or rather, isolation and review of sensitive and private data without due cause OR the specific ignorance of laws protecting peoples right to privacy. Those who find themselves living in the US should know privacy is not something to reject, it is a right that has been granted to their society by constitutional law, it is just and it should not be unreasonable to expect a system of technology that respects it, however - as a technician it is important to establish that the way computer systems work is on a “unique identifier” basis - otherwise the system can’t do anything. All communication systems need to know their destination, and specifically where they are coming from - so the target can reply. All communication systems route through a multitude of machines. The atypical illusion of the `common user` of P2P connections (point to point) is ridiculous, as quite clearly the data to reach that target (and indeed acknowledgement from target to the initial user source) is a neccesity for data transmission, as such, any use of technology systems - at least to an insanely high majority of people (estimated 99.99% of people) is anything but anonymous.
the way computer systems work is on a "unique identifier" basis


A little bit about the fallacical system of Privacy

Often, in law enforcement, and other security vendors - specifically airports, high security locations, music and dance venue’s, clubs, even your local stores the philosophy of “refusal to submit is admission of guilt” is considered a golden neccesity of operation. I ask “Why?”. I ask “Why?” people must be guilty to value their privacy. For instance, I would feel embarassed and personal intruded if a crowd of people watched as I showered, some wouldn’t , but some would. That is human nature, we are indeed all different. Let’s get back to the topic at hand, the fallacical idea of the system of fallacical security with an example:

Security Guard: Hello sir, I have been informed by a member of staff that you have been acting suspiciously, would you mind if I went through your back and personal items briefly.
Civilian: Yes I would mind, as that is private!
Security Guard: Sir, if you would kindly consent to me searching you for weapons, stolen items, etc then you will be able to go on your way as soon as we have established that you are innocent.
Civilian: I am innocent, however invading my privacy is not your right.
Security Guard: So you refuse to consent to being searched sir?
Civlian: Yes, Yes I do.
Security Guard:
Civilian:
Security Guard: Why disallow me to search through your posessions if you have nothing to hide?
Civilian: I have nothing to hide but my personal privacy and personal items, which I have already said.
Security Guard: Yes, but everyone else has to be searched, you are not an exception to this rule, it is for the security of you and others, and your freedom.
Civilian: My freedom is my privacy.
Security Guard: Perhaps, but refusal to consent to being searched suggests guilt, wheras compliance suggets innocence.

Such situations are of course very common, and such people to challenge the system in such a way are very uncommon. Compliance is not an option in most usual circumstances. In society a “reality” of importance is established and a double standard is born people at airports may be subjected to searches in the UK, those who value their freedom (and indeed, privacy) are persecuted and accused of guilt when they excercise the same rights that security forces claim to protect.
The substitution of freedom for security to protect freedoms deserve nor attain either.
This is not an old idea, of course, but it is a new perspective of the marvels that books like 1984 by George Orwell initiated, predicted and confounded. 1984, written in 1948 and published in 1949 talk about the “BIG BROTHER IS WATCHING YOU” an idea that lives on in our hearts and minds forevermore, and will continue to do so due to the potent threat of Unique Identification systems.

The fallacical idea of injustice, or assured guilt is predefined and primal in those who value their privacy (or even those who desire privacy and agree to adhere to stringent security guidelines) - guilt is assured to all people who value freedom in this way. Refusal to consent to the removal of basic rights of privacy is considered admission of guilt and can lead to further sanctioning as much as agreeing to consent to the removal of their rights, either way freedom is lost - a soul guarantor of a system of fallacical justice.

Below is a furthering of the original idea of removal of privacy by force or otherwise. The below example is presented as an indicator to the system of justice, rather than an argument against or for removal of the nature of the justice, punishment and trialing system.

A brief hypothetical Example of Fallacical Justice:
Example 1

Judge: If you are not guilty you will submit to stringent testing, searching, etc
Civilian: No I won’t submit
Judge: then you must be guilty as if you had nothing to hide you would submit


Example 2

Judge: If you are not guilty you will submit to stringent testing, searching, etc,
Civilian: I will submit.

The Certainty of Judgement
In a modern system of commercial business tracked by software management systems and intercommunication networks there is an insideous movement towards guilt before innocence. A precident that has recently been strengthened by the concept of the “War on Terror”, and the unquenchable need to substitute freedom with security in order to protect it. As a young adult I could only compare it to the actions of a spoilt child whom when finding out he cannot keep his freedom to himself and just himself, destroys it so that others may not enjoy it.

“Let us feel no guilt from the stigma that excercising freedoms of privacy are admissions to it”

Beyond the sociopolitical ideaology, the illusion of perfect society, I find myself confounded by an illusion of the perfect system of reality management. I find myself answering the advocates of the reality system with tips and truisms from the system of idealism; idealism, I would argue is as much as an illusion as the system of reality. i.e. the system of reality uses justifications such as “you must be guilty because you refuse to be searched” - “this patient is beyond help and we cannot justify keeping him on life support”. Such bold and judgemental statements made in the interest of reality and the “life isn’t fair” philosophy are mainly ignorant of the total fallacical illusion of the concept of justification. As an advocate and admirer of the system of idealism as demonstrated in my articles, I would now be forced to argue that
the mockery and “conspiracist nonsense” spoken towards idealist concepts is a result of a society too used to inhabiting a social system based on a nonsensical & unreal system of justification; an illusion more fallacical, judgemental and unwise than the dream of idealist concepts - and most certainly, at least - as dangerous.

References:
1984 by George Orwell http://en.wikipedia.org/wiki/Nineteen_Eighty-Four

Data Protection Act UK http://www.opsi.gov.uk/acts/acts1998/ukpga_19980029_en_1

United States Consitution 3rd ammendment right to privacy:
http://en.wikipedia.org/wiki/Third_Amendment_to_the_United_States_Constitution

“Freedom is an illusion created by those with power, for those without” - M. Jacques
“Expression is meaningless in an anonymous society” - M. Jacques

Comments

Notice of Evangelical Eviction , science or religion

“Whoever undertakes to set himself up as a judge of Truth and Knowledge is shipwrecked by the laughter of the gods.” — Albert Einstein

Some quotes reach us in a great wind, others in the synchronicity of science and modern sociopolitical values, others appear to masquerade as if from nothing, ever present and ever wise.

This notice serves as a warning to anyone who thinks he knows either truth or knowledge paramount; for those who say they do wield a dangerous and harrowing force to themselves and those who would surround them.

This can apply to many works and ideas. Thankyou Einstein, for a more restful day than usual!!

Comments

Have you guys ever wondered what the german 3rd reich was upto in their labs? This video tells all!

Hi readers! I thought you might like to read about the german 3rd reich. The mysteries of hitlers science department, and of course the infamous manual which states how UFO’s are real and that it was a critical military objective assigned by hitler and his german government himself. Anyone interested in the occult, ufo’s, alien’s, germany or the strange rumours about The 3rd reich attempting to contact other planets should watch this.

For those who think the crackpot factor is high - well yes it is :D However, all of the documentary is backed up with video’s and official documents from the german government, so no poo pissing please :)

[googlevideo]http://video.google.co.uk/videoplay?docid=-8291386537788537096[/googlevideo]

Comments

The all Seeing Eye that is Echelon Is listening

As a english patriot my entire life I have enjoyed the peaceful comfort of my own house, and the provisions and the safety that are made for us (and indeed taken for granted). What a lot of my readers don’t know is that privacy is something of the past, and as discussed previously with like minded thinkers, the internet, and telecom network is NOT what we think it is. A lot of it is monitored. What a lot of you do not know is that there is a 5 government alliance that allows a “global” listening/spy network to be installed throughout the world. Unfortunately, this is for our own safety, however in as simple words as I could put it - that much power is terrorism on the greatest scale. Fighting for “liberty” - is not removing them all. And so on. And here I share the FAQ (Frequently Asked Questions that have since been removed from the American Civil Liberties Union Website (Original location: http://www.aclu.org/echelonwatch/echfaq3.htm).

People at the very least should have been made aware of a system to promote their freedom, not to have that knowledge restricted and to be unaware of the truly massive power that governments instil upon themselves. But “why care, unless you have something to hide?” you say; I reply “power corrupts. absolute power, corrupts absolutely - roughly translated to, I care not of the civil liberties removed from me or the people, I care for the absolute `liberty of power` awarded to those who claim to their self indoctrinated wish to create freedom - and that is NOT freedom. That is slavery.
Q: What is Project ECHELON?

ECHELON is a code word for an automated global interception and relay system operated by the intelligence agencies in five nations — the United States, the United Kingdom, Canada, Australia and New Zealand (it is rumored that different nations have different code words for the project). While the United States National Security Agency (NSA) takes the lead, ECHELON works in conjunction with other intelligence agencies, including the Australian Defence Signals Directorate (DSD). It is believed that ECHELON also works with Britain’s Government Communications Headquarters (GCHQ) and the agencies of other allies of the United States, pursuant to various treaties. 1

These countries coordinate their activities pursuant to the UKUSA agreement, which dates back to 1947. The original ECHELON dates back to 1971. However, its capabilities and priorities have expanded greatly since its formation. According to reports, it is capable of intercepting and processing many types of transmissions, throughout the globe. In fact, it has been suggested that ECHELON may intercept as many as 3 billion communications everyday, including phone calls, e-mail messages, Internet downloads, satellite transmissions, and so on. 2 The ECHELON system gathers all of these transmissions indiscriminately, then distills the information that is most heavily desired through artificial intelligence programs. Some sources have claimed that ECHELON sifts through an estimated 90 percent of all traffic that flows through the Internet. 3

However, the exact capabilities and goals of ECHELON remain unclear. For example, it is unknown whether ECHELON actually targets domestic communications. Also, it is apparently very difficult for ECHELON to intercept certain types of transmissions, particularly fiber communications.

Q: How does ECHELON work?

ECHELON apparently collects data in several ways. Reports suggest it has massive ground based radio antennae to intercept satellite transmissions. In addition, some sites reputedly are tasked with tapping surface traffic. These antennae reportedly are in the United States, Italy, England, Turkey, New Zealand, Canada, Australia, and several other places. 4

Similarly, it is believed that ECHELON uses numerous satellites to catch “spillover” data from transmissions between cities. These satellites then beam the information down to processing centers on the ground. The main centers are in the United States (near Denver), England (Menwith Hill), Australia, and Germany. 5

According to various sources, ECHELON also routinely intercepts Internet transmissions. The organization allegedly has installed numerous “sniffer” devices. These “sniffers” collect information from data packets as they traverse the Internet via several key junctions. It also uses search software to scan for web sites that may be of interest. 6

Furthermore, it is believed that ECHELON has even used special underwater devices which tap into cables that carry phone calls across the seas. According to published reports, American divers, were able to install surveillance devices on to the underwater cables. One of these taps was discovered in 1982, but other devices apparently continued to function undetected. 7

It is not known at this point whether ECHELON has been able to tap fiber optic phone cables.

Finally, if the aforementioned methods fail to garner the desired information, there is another alternative. Apparently, the nations that are involved with ECHELON also train special agents to install a variety of special data collection devices. One of these devices is reputed to be an information processing kit that is the size of a suitcase. Another such item is a sophisticated radio receiver that is as small as a credit card. 8

After capturing this raw data, ECHELON sifts through them using DICTIONARY. DICTIONARY is actually a special system of computers which find pertinent information by searching for key words, addresses, etc. These search programs help pare down the voluminous quantity of transmissions which pass through the ECHELON network every day. These programs also seem to enable users to focus on any specific subject upon which information is desired. 9

Q: If ECHELON is so powerful, why haven’t I heard about it before?

The United States government has gone to extreme lengths to keep ECHELON a secret. To this day, U.S. government refuses to admit that ECHELON even exists. We know it exists because the Australian government (through its Defence Signals Directorate) has admitted to this fact. 10 However, even with this revelation, U.S. officials have refused to comment.

This “wall of silence” is beginning to erode. The first report on ECHELON was published in 1988. 11 In addition, besides the revelations from Australia, the Scientific and Technical Options Assessment program office (STOA) of the European Parliament commissioned two reports which describe ECHELON’s activities. These reports unearthed a startling amount of evidence, which suggests that ECHELON’s powers may have been underestimated. The first report, entitled “An Appraisal of Technologies of Political Control”, suggested that ECHELON primarily targeted civilians.

This report found that:

“The ECHELON system forms part of the UKUSA system but unlike many of the electronic spy systems developed during the cold war, ECHELON is designed for primarily non-military targets: governments, organisations and businesses in virtually every country. The ECHELON system works by indiscriminately intercepting very large quantities of communications and then siphoning out what is valuable using artificial intelligence aids like Memex to find key words. Five nations share the results with the US as the senior partner under the UKUSA agreement of 1948, Britain, Canada, New Zealand and Australia are very much acting as subordinate information servicers.

“Each of the five centres supply “dictionarie” to the other four of keywords, phrases, people and places to “tag” and the tagged intercept is forwarded straight to the requesting country. Whilst there is much information gathered about potential terrorists, there is a lot of economic intelligence, notably intensive monitoring of all the countries participating in the GATT negotiations. But Hager found that by far the main priorities of this system continued to be military and political intelligence applicable to their wider interests. Hager quotes from a “highly placed intelligence operatives” who spoke to the Observer in London. “We feel we can no longer remain silent regarding that which we regard to be gross malpractice and negligence within the establishment in which we operate.” They gave as examples. GCHQ interception of three charities, including Amnesty International and Christian Aid. “At any time GCHQ is able to home in on their communications for a routine target request,” the GCHQ source said. In the case of phone taps the procedure is known as Mantis. With telexes its called Mayfly. By keying in a code relating to third world aid, the source was able to demonstrate telex “fixes” on the three organisations. With no system of accountability, it is difficult to discover what criteria determine who is not a target.” 12

The most recent report, known as “Interception Capabilities 2000”, describes ECHELON capabilities in even more elaborate detail. 13

In addition, an Italian government official has begun to investigate Echelon’s intelligence — gathering efforts, based on the belief that the organization may be spying on European citizens in violation of Italian or international law. 14

The Danish Parliament also has begun an inquiry.

Events in the United States have also indicated that the “wall of silence” might not last much longer. Exercising their Constitutionally created oversight authority, members of the House Select Committee on Intelligence recently started asking questions about the legal basis for NSA’s ECHELON activities. In particular, the Committee wanted to know if the communications of Americans were being intercepted and under what authority, since US law severely limits the ability of the intelligence agencies to engage in domestic surveillance. When asked about its legal authority, NSA invoked the attorney-client privilege and refused to disclose the legal standards by which ECHELON might have conducted its activities. 15

A funding bill is now making its way through the Congress which would, at a minimum, require the NSA to report on the legal basis for ECHELON and similar activities. 16

In addition, Rep. Bob Barr (R-GA), who has taken the lead in Congressional efforts to ferret out the truth about ECHELON has arranged for the House Government Reform and Oversight Committee to hold oversight hearings.17

Q: What is being done with the information that ECHELON collects?

The original purpose of ECHELON was to protect national security. That purpose continues today. For example, we know that ECHELON is gathering information on North Korea. Sources from Australia’s DSD have disclosed this much because Australian officials help operate the facilities there which scan through transmissions, looking for pertinent material. 18

However, national security is not ECHELON’s only concern. Reports have indicated that industrial espionage has become a part of ECHELON’s activities. While present information seems to suggest that only high- ranking government officials have direct control over ECHELON’s tasks, the information that is gained may be passed along at the discretion of these very same officials. As a result, much of this information has been given to American companies, in apparent attempts to give these companies an edge over their less knowledgeable counterparts. 19

In addition, there are concerns that ECHELON’s actions may be used to stifle political dissent. Many of these concerns were voiced in a report commissioned by the European Parliament. What is more, there are no known safeguards to prevent such abuses of power. 20

Q: Is there any evidence that ECHELON is doing anything improper or illegal with the spying resources at its disposal?

ECHELON is a highly classified operation, which is conducted with little or not oversight by national parliaments or court. Most of what is known comes from whistleblowers and classified documents. The simple truth is that there is no way to know precisely what ECHELON is being used for.

But there is evidence, much of which is circumstantial, that ECHELON (along with its British counterpart) has been engaged in significant invasions of privacy. These alleged violations include secret surveillance of political organizations, such as Amnesty International. 21 It has also been reported that ECHELON has engaged in industrial espionage on various private companies such as Airbus Industries and Panavia, then has passed along the information to their American competitors. 22 It is unclear just how far ECHELON’s activities have harmed private individuals.

However, the most sensational revelation was that Diana, Princess of Wales may have come under ECHELON surveillance before she died. As reported in the Washington Post, the NSA admitted that they possessed files on the Princess, partly composed of intercepted phone conversations. While one official from the NSA claimed that the Princess was never a direct target, this disclosure seems to indicates the intrusive, yet surreptitious manner by which ECHELON operates. 23

What is even more disquieting about these allegations is that if proven, may have circumvented countless laws in numerous countries. Many nations have laws in place to prevent such invasions of privacy. However, there are suspicions that ECHELON has engaged in subterfuge to avoid these legal restrictions. For example, it is rumored that nations would not use their own agents to spy on their own citizens, but assign the task to agents from other countries. 24 In addition, as mentioned earlier, it is unclear just what legal standards ECHELON follows, if any actually exist. Thus, it is difficult to say what could prevent ECHELON from abusing its remarkable capabilities.

Q: Is everyone else doing what ECHELON does?

Maybe not everyone else, but there are plenty of other countries that engage in the type of intelligence gathering that ECHELON performs. These countries apparently include Russia, France, Israel, India, Pakistan and many others. 25 Indeed, the excesses of these ECHELON-like operations are rumored to be similar in form to their American equivalents, including digging up information for private companies to give them a commercial advantage.

However, it is also known that ECHELON system is the largest of its kind. What is more, its considerable powers are enhanced through the efforts of America’s allies, including the United Kingdom, Canada, Australia, and New Zealand. Other countries don’t have the resources to engage in the massive garnering of information that the United States is carrying out.

Comments (2)

Project Ether Ghost Announced

Well, I’ve decided to start a new research project as part of an endorsement for game-zero LTD. I’ve decided to lease a camera with IR (video and regular camera) and goto my nearest haunted house - it’ll be part of my ongoing and continued theories of pioneers such as nikola tesla about the “ether” - some call it the fabric of space, others call it an invisible inter-dimensional link, some call it the afterlife - suffice to say nobody knows what the fark it is! *grin*

Well, it’ll be interesting I hope to make some more announcements and get some pictures and maybe even a Video up soon!

woot. I love this sort of stuff

A

Comments