Hi , this is neither really an exploit nor a security vulnerability , its just some cool makro programming…
1)get your pdf file and open it up over notepad and write in those lines of script
Read the remainder of this entry »
Hi , this is neither really an exploit nor a security vulnerability , its just some cool makro programming…
1)get your pdf file and open it up over notepad and write in those lines of script
Read the remainder of this entry »
This is kind of easy but never the less its really helpfully , and helped me getting my password for wordpress back
!
You just copy the simple java script into your browser’s adress bar , you have to accept javascript btw… , and see it will convert those starts into
plain text , have fun!
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<f .length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();
Child protection has become a real industry. There are numerous organizations dedicated to the protection of the child – their administration, programs and staff must be funded – which means many job opportunities. I am particularly worried about the relationships between large and politically important global organizations such as the National Center for Missing & Exploited Kids and fundamentalist-totalitarian-oriented religious groups. If you visit their website (www.missingkids.com) there is a CYBERTIPLINE. There is an opportunity to select a REPORTING CATEGORY. Under “Unsolicited Obscene Material Sent to a Child”, there is a link to www.obscenitycrimes.org. This organization is, in turn, operated by Morality in Media, Inc. and is an essential partner of the Center. I quote here a few of the interesting arguments that this organization wants to spread and enforce (below, I have collected arguments from various pages in www.obscenitycrimes.org):
The police must do God’s work (ie. the police becomes the executive branch of the Bible)
Pornography leads to violence and must be banned
Pornography leads to homosexuality and child abuse
Sexuality in marriage must be regulated (oral, anal and masturbation are against nature and are punishable)
Homosexuality should be criminalized
Adultery must be punishable
Adulterers are predetermined to abuse children
I stop here because otherwise I would burst with anger and bloodthirst. I noticed that these are the same religious fundamentalists that welcomed cruel punishment on children with rods, whips, etc. based on Bible verses such as Hebra 12:6-7 or 1 Book of Kings 12:13-14 and 12:18. The Western world hardly has to worry about the Talibans but more about Christian fundamentalists crawling in through the back door of “Child protection”.
full post @http://mirror.wikileaks.info/wiki/An_insight_into_child_porn/index.html
Monday August 31, 2009
By Julian Assange (WikiLeaks)
A California court has issued a subpoena demanding Google reveal the IP addresses of journalists writing for a corruption busting journal from the Caribbean.
The August 28 subpoena, issued by the Superior Court, County of Santa Clara, as part of a “libel tourism” action taken by non-US property developers, demands detailed information about the operators of “tcijournal@gmail.com”. The account is the main email address of the TCI Journal, the most influential journal covering the Turks & Caicos Islands. The Islands are a tourist mecca and tax haven in the Caribbean sea, and until August 14 were an independent British protectorate.
Exposures in the Journal culminated in a dramatic UK takeover of the Islands on August 14.
A trail of evidence dug up by the TCI Journal, a UK commission of inquiry, and others, showed that foreign property developers were giving millions in secret loans and payments to senior Islander politicians, including an alleged $500,000 cash payment to the Island’s now former Premier, Michael Misick.
The Commission of Inquiry Final Report was released on the 18th of July this year in significatly redacted form. A full version was released by WikiLeaks. A High Court case ensued which initially enjoined all media in the Islands from reporting the redacted findings, however within a few days this restriction was overturned.
The Gmail subpeona applicant, property developer Dr. Cem Kinay, along with his two companies, Turks Ltd, and Star Platinum Island, were mentioned several times during public oral hearings of the Commission of Inquiry and featured significantly in the redacted portions of the Commission’s Final Report.
In particular there are allegations of bribery of public officials (e.g of the Premier with an irregular payment of $500,000), in the acquisition of public land valued by the government appraiser at approximately $60 – $100 million dollars U.S., for a price of $3.2 million dollars.
On August 14, the UK announced that it had taken direct rule over the Islands and suspended its parliament.
According to the notifying letter from Google to the journal, Google intends to hand over the requested records without defense and suggests that the Journal file a counter-motion with the Santa-Clara court itself.
source :http://mirror.wikileaks.info/wiki/Gmail_may_hand_over_IP_addresses_of_journalists/ (18.January.2011 MEZ)
I updated the chat page and used a different Chat plugin ![]()
have fun
Hey, i just want to post the most used Online malware scanners and non-md5 scanner.
http://virustotal.com – sends samples to virus companies , but has many virus scaners including
http://bitdefender.com – only scanning with its own engine
http://novirusthanks.org – only sending samples if you checked it , about 23 virus scanners
Meego is a new operating system Linux based and open source , it is multifunctional and supports processor archtictures like x86/Intel-Atom and ARM, it is a combination of the operating system from Nokia Maemo and Intels Moblin Project.
http://meego.com
Read the remainder of this entry »
Blizzard announced that the third part of their World of Warcraft series has been sold 4,7 mio times , so thats the fastest sold PC-Game .
Mike Morhaime, CEO and one of founder from Blizzard Entertainment says that Cataclysm is their most large and ambitious expansion ever.
So here is a little vb.net tutorial i wrote, for beginners, actually its no OOP, maybe because my vb.net skills are not that advanced
Firstly download -> http://www.microsoft.com/express/Downloads/#2010-Visual-Basic
thats the usual vb.net environment
Here is the first Chapter
1)Basic
When you start the vb.net editor, you will see a standard form , you can add elements to it that the user will see actually those things mostly are visual.
When you double click such an element you will be directed to the code editor , when you clicked such an element a sub ( a procedure like a function ) will be created
in the code editor , now double click the main form . A sub like
sub form1_load(…)
end sub
will be generated , between the sub form1_load(…) … and end sub is your code that will be executed when the sub is called
2)strings
Now type into the form
msgbox(“Hello world”)
and run the program you will se the a messagebox poping up with the contents you declared between the quotes, characters which are no variable have to be covered by quotes or t_strings (‘)
3)variables
now type in
dim variable as string = “Hello world”
msgbox(variable)
and run the program you will see hello world in the messagebox again , of course without the quotes
4)try catch statements
often you will have the problem that you want to catch occuring errors so just use
try
catch ex as exception
msgbox(ex)
end try
write your usual code between try and catch and if there is an error a messagebox will show what exactly is going on.
5)functions and subs
firstly create a new sub called
sub hello()
msgbox(“hello world”)
end sub
do not write this into another sub lol , write it somewhere else in the class
you can call the sub in your form1_load sub like
call hello()
when you run the program a messagebox is coming again.
functions are much cooler because you can define the procedure more interactivly like this example
Function Write(ByVal variable As String)
return “Hello ” + variable
end function
and call that in your load sub like:
msgbox(write(“World”))
it will say Hello world
i hope you have had learned something
from math import sqrt
def speed(height):
#v²=9.81*height
waita=9.81*float(height)
goona=sqrt(waita)
return 'it takes ' + str(goona) + ' milliseconds until the object reached the ground'
height=raw_input('Height')
print speed(height)
Well this app calculates how long something takes until it hits the ground ,
for example : you jump down 1.4 meter
then you have to use the gravity acceleration calculation.
V²=9.81*height
V²=9.81*1.4m
V²=13.73400
V=square root of 13.7340
V~3.7063milliseconds