Working on this new server in php7...
imc indymedia

Los Angeles Indymedia : Activist News

white themeblack themered themetheme help
About Us Contact Us Calendar Publish RSS
Features
latest news
best of news
syndication
commentary


KILLRADIO

VozMob

ABCF LA

A-Infos Radio

Indymedia On Air

Dope-X-Resistance-LA List

LAAMN List




IMC Network:

Original Cities

www.indymedia.org africa: ambazonia canarias estrecho / madiaq kenya nigeria south africa canada: hamilton london, ontario maritimes montreal ontario ottawa quebec thunder bay vancouver victoria windsor winnipeg east asia: burma jakarta japan korea manila qc europe: abruzzo alacant andorra antwerpen armenia athens austria barcelona belarus belgium belgrade bristol brussels bulgaria calabria croatia cyprus emilia-romagna estrecho / madiaq euskal herria galiza germany grenoble hungary ireland istanbul italy la plana liege liguria lille linksunten lombardia london madrid malta marseille nantes napoli netherlands nice northern england norway oost-vlaanderen paris/Île-de-france patras piemonte poland portugal roma romania russia saint-petersburg scotland sverige switzerland thessaloniki torun toscana toulouse ukraine united kingdom valencia latin america: argentina bolivia chiapas chile chile sur cmi brasil colombia ecuador mexico peru puerto rico qollasuyu rosario santiago tijuana uruguay valparaiso venezuela venezuela oceania: adelaide aotearoa brisbane burma darwin jakarta manila melbourne perth qc sydney south asia: india mumbai united states: arizona arkansas asheville atlanta austin baltimore big muddy binghamton boston buffalo charlottesville chicago cleveland colorado columbus dc hawaii houston hudson mohawk kansas city la madison maine miami michigan milwaukee minneapolis/st. paul new hampshire new jersey new mexico new orleans north carolina north texas nyc oklahoma philadelphia pittsburgh portland richmond rochester rogue valley saint louis san diego san francisco san francisco bay area santa barbara santa cruz, ca sarasota seattle tampa bay tennessee urbana-champaign vermont western mass worcester west asia: armenia beirut israel palestine process: fbi/legal updates mailing lists process & imc docs tech volunteer projects: print radio satellite tv video regions: oceania united states topics: biotech

Surviving Cities

www.indymedia.org africa: canada: quebec east asia: japan europe: athens barcelona belgium bristol brussels cyprus germany grenoble ireland istanbul lille linksunten nantes netherlands norway portugal united kingdom latin america: argentina cmi brasil rosario oceania: aotearoa united states: austin big muddy binghamton boston chicago columbus la michigan nyc portland rochester saint louis san diego san francisco bay area santa cruz, ca tennessee urbana-champaign worcester west asia: palestine process: fbi/legal updates process & imc docs projects: radio satellite tv
printable version - js reader version - view hidden posts - tags and related articles


View article without comments

New ID Verification Feature on this Site

by johnk idVer:f9b399091dc85eb8fbd97920f333d403 Tuesday, Oct. 21, 2014 at 1:06 AM

We don't have accounts, but there is a way to verify that you are who you say you are.

Due to the complaints from a user, we have added a feature to the site that fulfills one of the functions of "user registration" which is to allow people to have a consistent identity. It's called "ID verification", and it appears as a long hex string after your name, like this:

imc-volunteer idVer:324659533317de05378c76587

That hex string is computed from the "author" and "secret" fields.

By using the same author and secret for each post, you'll produce the same idVer value. That matching value verifies you. The reads need to manually check that the idVer values match.

idVer works because someone else won't know your secret. You should pick a secret that isn't a password for any other website. Even though the secret is not stored anywhere, it may be intercepted as it's sent up to the server.

The secret is not stored anywhere. It's used to calculate the idVer, and then disposed. The idVer is appended to the author field, and saved.

(It *is* possible to spoof a user if you have direct access to the database. You could replace the author and bypass the calculations. But that's not any worse or better than any other similar commenting software.)
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


Greasemonkey script to highlight idVer.

by johnk Tuesday, Oct. 21, 2014 at 11:11 PM

Below is a script you can use in Greasemonkey to highlight the first 12 digits after "idVer:". The color is an HTML color based on the hex values for each set of six digits. If it works, we'll just add that javascript to this site.


// ==UserScript==
// @name highlight idVer
// @namespace jk
// @description Highlights strings that start with "idVar:" and followed by hex digits
// @include http://la.indymedia.org/news/*
// @version 1
// @grant none
// ==/UserScript==

var idver_re=/idVer:([0-9a-f]{6})([0-9a-f]{6})/g;
var scratch = document.getElementsByClassName('bgcentercol')[0];
var html = scratch.innerHTML;
html = html.replace( idver_re, 'idVar:$1$2' );
scratch.innerHTML = html;
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


The GM script kills the freenet box

by johnk idVer:f9b399091dc85eb8fbd97920f333d403 Tuesday, Oct. 21, 2014 at 11:18 PM

It needs more work - enabling the idVer colorizer script causes the freenet box to stop working. So it needs more work.
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


a small question

by Curious Thursday, Oct. 23, 2014 at 4:13 PM

Does this IMC still retain use logs with their I.P.s?
Don't even try to tell me you never have, as I have direct testimony otherwise.
Sometimes the members of this site lets a bit too much out.
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


yes we do so never post here again

by johnk idVeŗ:f9b399091dc85eb8fbd97920f333d403 Thursday, Oct. 23, 2014 at 5:11 PM

yes we do so never p...
social_websites.png, image/png, 864x789

be afraid

be very afraid

Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


of course they know who you are

by dead_nessie idVer:e00afa39fd648fc696cdf9f4904 Thursday, Oct. 23, 2014 at 8:55 PM

Of course they know who you are. How could they ever block you otherwise? nessie once blurted it out about checking server logs, by the way, and we all know she was a felon who had to be a stoolie to stay on the streey, and after Andy the cop killer appeared at SF.

And what's with the "secret" horseshit?

"The secret is used to produce an id verification code displayed with your author name. Use the same author name and secret on all your posts."

So what if everybody uses the name "Claude Balls" ?

Something is as fishy as the global warming bullshit.
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


salty nuts

by crazy_inventor Friday, Oct. 24, 2014 at 5:45 AM

it's still hashed against whatever {dumb_smashy} name you use and a SALT

well I see computer science is yet another one of your strong points :)

Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


heh

by "Claude Balls" ? Friday, Oct. 24, 2014 at 10:34 AM

the only problem I see is that this compromised IMC allows outside parties to have access to the information on these logs.
so fuck you, johnk.
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


the hashing function is intended to

by crazy_inventor Friday, Oct. 24, 2014 at 10:46 AM

the hashing function...
big_brotherwatching-698x1023.jpg, image/jpeg, 392x575

prevent spoofing and nothing more.

your sexual advances are directed at the wrong parties

Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


answers

by johnk idVer:d502486912de3028a731b503d263f8ac Saturday, Oct. 25, 2014 at 11:33 AM

I forgot my original secret, so I used a new one. (I haven't fixed the unicode letter-spoofing issue yet, so people should look out for that. This idVer feature isn't finished until that's done.)

We don't log IP addresses of readers, but we do log accesses at this time. We also automatically delete old server logs.

We do log IP addresses of posters - but these are not in the regular server logs. They go to a text file, and we delete that periodically.

We have considered turning off logging entirely, but it's the only way that we detect the usual URL-based attacks, and detect if something has been somehow uploaded and executed.

The risk of logs being compromised or subpoenaed exists, but the logs are so inconclusive they aren't that useful. Also, given the current political climate, it's more likely that the FBI would install an invisible proxy as a kind of "wiretap" and record the traffic. Due to the lack of encryption, they would get the data, and the metadata.

If we added SSL encryption (which we eventually will), they could still get the metadata, but not the data... but that's moot because all the data is already public on this site. (Think about it - they would know all the SSL setup - ip addresses and url. They could download the page you're reading, and see what you're seeing. If you commented or posted, they'd get the publish urls. Though they wouldn't get the content as it's posted - they could just get the public page after it's been published, and correlate the time of the post with the timestamp on the post. On a site like this IMC, SSL is, at best, an illusion of security if the police use their powers to subpoena the actual traffic. The only time SSL is useful is if all the URLs are anonymous or generic without identifying information. The site must also randomize or not save the "post times" - but that's a huge problem because news relies on time. Finally, it should not be a website like the IMC where all the inputs are turned into public outputs.)

So, to be secured against IP snooping, you need to use something like TOR that will hide your IP address. I think it also forces all TOR users to have the same agent string, so that's less useful for identification as well.

* I absolutely advocate that people use Tor or a similar proxy to read this site. *

The more people do it, the less valuable our log lines become.
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


one other thing: freenet

by johnk idVer:d502486912de3028a731b503d263f8ac Saturday, Oct. 25, 2014 at 12:06 PM

If you're extremely paranoid, you can try out freenet and comment on there.

Freenet is more fully anonymous, with all requests and data encrypted and proxies across thousands of nodes. Architecturally, it's more safe than Tor. Try it out.

We don't have a two-way gateway, but it's something, and I'll definitely see the information and might post the comment to the public site.

Posts with local content will probably bet copied up to freenet, too, so you can just bookmark the imc-volunteer account's flog and read the news up there. (I dream of automating this cross-posting of info.)
Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


panopticlick

by crazy_inventor Saturday, Oct. 25, 2014 at 12:15 PM
How unique - and trackable - is your browser ?

Within our dataset of several million visitors, only one in 1,545,293 browsers have the same fingerprint as yours.

"and he shall be known by his USER_AGENT"

+hide-user-agent{Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1478.0

tools > change user agent > user agent switcher

Report this post as:
Share on: Twitter, Facebook, Google+

add your comments


© 2000-2018 Los Angeles Independent Media Center. Unless otherwise stated by the author, all content is free for non-commercial reuse, reprint, and rebroadcast, on the net and elsewhere. Opinions are those of the contributors and are not necessarily endorsed by the Los Angeles Independent Media Center. Running sf-active v0.9.4 Disclaimer | Privacy