summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-11-27 23:43:21 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-12-08 02:20:48 +0100
commit42721e95726559b4a601240bb5b0fe4e5d755b2a (patch)
tree6810e05f845ca787acc1d02fa82d3df15cd0ef9b
parent377b390c97afb9106fd9a139819d00306f996f24 (diff)
Added Schedule parsing and replaced old Fahrplan importer
Resolves #553 (Change Frab Import from xCal to XML) Resolves #538 (Feature Request: Multi Frab Import)
-rw-r--r--README.md2
-rw-r--r--composer.json1
-rw-r--r--config/app.php1
-rw-r--r--config/routes.php16
-rw-r--r--db/migrations/2019_09_07_000000_migrate_admin_schedule_permissions.php48
-rw-r--r--db/migrations/2019_09_07_000001_create_schedule_shift_table.php90
-rw-r--r--db/migrations/Reference.php22
-rw-r--r--docker/Dockerfile3
-rw-r--r--import/27C3_sample.xcs2090
-rw-r--r--import/camp2011.en.xcs1257
-rw-r--r--import/har2009_sample.xcs5451
-rw-r--r--includes/includes.php3
-rw-r--r--includes/model/Room_model.php30
-rw-r--r--includes/model/Shifts_model.php75
-rw-r--r--includes/model/Stats.php18
-rw-r--r--includes/pages/admin_import.php478
-rw-r--r--includes/pages/admin_rooms.php11
-rw-r--r--includes/pages/admin_shifts.php1
-rw-r--r--includes/pages/schedule/ImportSchedule.php612
-rw-r--r--includes/sys_menu.php38
-rw-r--r--includes/sys_template.php36
-rw-r--r--resources/lang/de_DE/additional.po33
-rw-r--r--resources/lang/de_DE/default.po57
-rw-r--r--resources/lang/en_US/additional.po33
-rw-r--r--resources/lang/en_US/default.po60
-rw-r--r--resources/views/admin/schedule/index.twig41
-rw-r--r--resources/views/admin/schedule/load.twig79
-rw-r--r--resources/views/macros/form.twig13
-rw-r--r--src/Helpers/Schedule/CalculatesTime.php24
-rw-r--r--src/Helpers/Schedule/Conference.php129
-rw-r--r--src/Helpers/Schedule/Day.php88
-rw-r--r--src/Helpers/Schedule/Event.php337
-rw-r--r--src/Helpers/Schedule/Room.php52
-rw-r--r--src/Helpers/Schedule/Schedule.php111
-rw-r--r--src/Helpers/Schedule/XmlParser.php172
-rw-r--r--src/Http/GuzzleServiceProvider.php25
-rw-r--r--src/Middleware/LegacyMiddleware.php18
-rw-r--r--src/Models/Shifts/Schedule.php31
-rw-r--r--src/Models/Shifts/ScheduleShift.php38
-rw-r--r--tests/Feature/Model/RoomModelTest.php2
-rw-r--r--tests/Unit/HasDatabase.php19
-rw-r--r--tests/Unit/Helpers/Schedule/Assets/schedule.xml46
-rw-r--r--tests/Unit/Helpers/Schedule/CalculatesTimeTest.php33
-rw-r--r--tests/Unit/Helpers/Schedule/ConferenceTest.php49
-rw-r--r--tests/Unit/Helpers/Schedule/DayTest.php47
-rw-r--r--tests/Unit/Helpers/Schedule/EventTest.php145
-rw-r--r--tests/Unit/Helpers/Schedule/RoomTest.php31
-rw-r--r--tests/Unit/Helpers/Schedule/ScheduleTest.php112
-rw-r--r--tests/Unit/Helpers/Schedule/XmlParserTest.php54
-rw-r--r--tests/Unit/Http/GuzzleServiceProviderTest.php29
-rw-r--r--tests/Unit/Models/Shifts/ScheduleShiftTest.php41
-rw-r--r--tests/Unit/Models/Shifts/ScheduleTest.php37
52 files changed, 2818 insertions, 9451 deletions
diff --git a/README.md b/README.md
index 8f1cb705..0d0db7c6 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ The following instructions explain how to get, build and run the latest engelsys
```
### Configuration and Setup
- * The webserver must have write access to the ```import``` and ```storage``` directories and read access for all other directories
+ * The webserver must have write access to the ```storage``` directory and read access for all other directories
* The webserver must point to the ```public``` directory.
* The webserver must read the ```.htaccess``` file and ```mod_rewrite``` must be enabled
diff --git a/composer.json b/composer.json
index 0af3b2a6..ecd76a31 100644
--- a/composer.json
+++ b/composer.json
@@ -28,6 +28,7 @@
"doctrine/dbal": "^2.9",
"erusev/parsedown": "^1.7",
"gettext/gettext": "^4.6",
+ "guzzlehttp/guzzle": "^6.3",
"illuminate/container": "5.8.*",
"illuminate/database": "5.8.*",
"illuminate/support": "5.8.*",
diff --git a/config/app.php b/config/app.php
index 970f80a5..e1001900 100644
--- a/config/app.php
+++ b/config/app.php
@@ -31,6 +31,7 @@ return [
// Additional services
\Engelsystem\Helpers\VersionServiceProvider::class,
\Engelsystem\Mail\MailerServiceProvider::class,
+ \Engelsystem\Http\GuzzleServiceProvider::class,
],
// Application middleware
diff --git a/config/routes.php b/config/routes.php
index e57d3079..e498b2b5 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -25,3 +25,19 @@ $route->get('/stats', 'Metrics\\Controller@stats');
// API
$route->get('/api[/{resource:.+}]', 'ApiController@index');
+
+// Administration
+$route->addGroup(
+ '/admin',
+ function (RouteCollector $route) {
+ // Schedule
+ $route->addGroup(
+ '/schedule',
+ function (RouteCollector $route) {
+ $route->get('', 'Admin\\Schedule\\ImportSchedule@index');
+ $route->post('/load', 'Admin\\Schedule\\ImportSchedule@loadSchedule');
+ $route->post('/import', 'Admin\\Schedule\\ImportSchedule@importSchedule');
+ }
+ );
+ }
+);
diff --git a/db/migrations/2019_09_07_000000_migrate_admin_schedule_permissions.php b/db/migrations/2019_09_07_000000_migrate_admin_schedule_permissions.php
new file mode 100644
index 00000000..e39e22d8
--- /dev/null
+++ b/db/migrations/2019_09_07_000000_migrate_admin_schedule_permissions.php
@@ -0,0 +1,48 @@
+<?php
+
+namespace Engelsystem\Migrations;
+
+use Engelsystem\Database\Migration\Migration;
+
+class MigrateAdminSchedulePermissions extends Migration
+{
+ /**
+ * Run the migration
+ */
+ public function up()
+ {
+ if (!$this->schema->hasTable('Privileges')) {
+ return;
+ }
+
+ $this->schema->getConnection()
+ ->table('Privileges')
+ ->where('name', 'admin_import')
+ ->update(
+ [
+ 'name' => 'schedule.import',
+ 'desc' => 'Import rooms and shifts from schedule.xml',
+ ]
+ );
+ }
+
+ /**
+ * Reverse the migration
+ */
+ public function down()
+ {
+ if (!$this->schema->hasTable('Privileges')) {
+ return;
+ }
+
+ $this->schema->getConnection()
+ ->table('Privileges')
+ ->where('name', 'schedule.import')
+ ->update(
+ [
+ 'name' => 'admin_import',
+ 'desc' => 'Import rooms and shifts from schedule.xcs/schedule.xcal',
+ ]
+ );
+ }
+}
diff --git a/db/migrations/2019_09_07_000001_create_schedule_shift_table.php b/db/migrations/2019_09_07_000001_create_schedule_shift_table.php
new file mode 100644
index 00000000..c9cd7cfe
--- /dev/null
+++ b/db/migrations/2019_09_07_000001_create_schedule_shift_table.php
@@ -0,0 +1,90 @@
+<?php
+
+namespace Engelsystem\Migrations;
+
+use Engelsystem\Database\Migration\Migration;
+use Illuminate\Database\Schema\Blueprint;
+
+class CreateScheduleShiftTable extends Migration
+{
+ use Reference;
+
+ /**
+ * Run the migration
+ */
+ public function up()
+ {
+ $this->schema->create(
+ 'schedules',
+ function (Blueprint $table) {
+ $table->increments('id');
+ $table->string('url');
+ }
+ );
+
+ $this->schema->create(
+ 'schedule_shift',
+ function (Blueprint $table) {
+ $table->integer('shift_id')->index()->unique();
+ if ($this->schema->hasTable('Shifts')) {
+ // Legacy table access
+ $table->foreign('shift_id')
+ ->references('SID')->on('Shifts')
+ ->onUpdate('cascade')
+ ->onDelete('cascade');
+ }
+
+ $this->references($table, 'schedules');
+ $table->uuid('guid');
+ }
+ );
+
+ if ($this->schema->hasTable('Shifts')) {
+ $this->schema->table(
+ 'Shifts',
+ function (Blueprint $table) {
+ $table->dropColumn('PSID');
+ }
+ );
+ }
+
+ if ($this->schema->hasTable('Room')) {
+ $this->schema->table(
+ 'Room',
+ function (Blueprint $table) {
+ $table->dropColumn('from_frab');
+ }
+ );
+ }
+ }
+
+ /**
+ * Reverse the migration
+ */
+ public function down()
+ {
+ if ($this->schema->hasTable('Room')) {
+ $this->schema->table(
+ 'Room',
+ function (Blueprint $table) {
+ $table->boolean('from_frab')
+ ->default(false);
+ }
+ );
+ }
+
+ if ($this->schema->hasTable('Shifts')) {
+ $this->schema->table(
+ 'Shifts',
+ function (Blueprint $table) {
+ $table->integer('PSID')
+ ->nullable()->default(null)
+ ->unique();
+ }
+ );
+ }
+
+ $this->schema->drop('schedule_shift');
+ $this->schema->drop('schedules');
+ }
+}
diff --git a/db/migrations/Reference.php b/db/migrations/Reference.php
index 49a1f9ea..d0550686 100644
--- a/db/migrations/Reference.php
+++ b/db/migrations/Reference.php
@@ -4,6 +4,7 @@ namespace Engelsystem\Migrations;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\ColumnDefinition;
+use Illuminate\Support\Str;
trait Reference
{
@@ -11,20 +12,25 @@ trait Reference
* @param Blueprint $table
* @param bool $setPrimary
*/
- protected function referencesUser(Blueprint $table, $setPrimary = false)
+ protected function referencesUser(Blueprint $table, bool $setPrimary = false)
{
- $this->references($table, 'users', 'user_id', $setPrimary);
+ $this->references($table, 'users', null, $setPrimary);
}
/**
- * @param Blueprint $table
- * @param string $targetTable
- * @param string $fromColumn
- * @param bool $setPrimary
+ * @param Blueprint $table
+ * @param string $targetTable
+ * @param string|null $fromColumn
+ * @param bool $setPrimary
* @return ColumnDefinition
*/
- protected function references(Blueprint $table, $targetTable, $fromColumn, $setPrimary = false): ColumnDefinition
- {
+ protected function references(
+ Blueprint $table,
+ string $targetTable,
+ ?string $fromColumn = null,
+ bool $setPrimary = false
+ ): ColumnDefinition {
+ $fromColumn = $fromColumn ?? Str::singular($targetTable) . '_id';
$col = $table->unsignedInteger($fromColumn);
if ($setPrimary) {
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 013ccf1d..50a638a3 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,7 +15,6 @@ COPY .babelrc .browserslistrc composer.json LICENSE package.json README.md webpa
COPY bin/ /app/bin
COPY config/ /app/config
COPY db/ /app/db
-RUN mkdir /app/import/
COPY includes/ /app/includes
COPY public/ /app/public
COPY resources/views /app/resources/views
@@ -35,7 +34,7 @@ WORKDIR /var/www
RUN apk add --no-cache icu-dev && \
docker-php-ext-install intl pdo_mysql
COPY --from=data /app/ /var/www
-RUN chown -R www-data:www-data /var/www/import/ /var/www/storage/ && \
+RUN chown -R www-data:www-data /var/www/storage/ && \
rm -r /var/www/html
ARG VERSION
diff --git a/import/27C3_sample.xcs b/import/27C3_sample.xcs
deleted file mode 100644
index a84e31d3..00000000
--- a/import/27C3_sample.xcs
+++ /dev/null
@@ -1,2090 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<iCalendar xmlns:xCal="urn:ietf:params:xml:ns:xcal" xmlns:pentabarf="http://pentabarf.org">
- <vcalendar>
- <version>2.0</version>
- <prodid>-//Pentabarf//Schedule #&lt;Conference_release::Row:0x2eadcdf118d8&gt;//EN</prodid>
- <x-wr-caldesc>27C3 Schedule Release #&lt;Conference_release::Row:0x2eadcdf118d8&gt;</x-wr-caldesc>
- <x-wr-calname>27C3 Schedule</x-wr-calname>
-<vevent>
- <method>PUBLISH</method>
- <uid>4302@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4302</pentabarf:event-id>
- <pentabarf:event-slug>27c3_keynote_we_come_in_peace</pentabarf:event-slug>
- <pentabarf:title>27C3 Keynote</pentabarf:title>
- <pentabarf:subtitle>We come in Peace</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T113000</dtstart>
- <dtend>20101227T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>27C3 Keynote- We come in Peace</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4302.en.html</url>
- <location>Saal 1</location>
- <attendee>Rop Gonggrijp</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4244@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4244</pentabarf:event-id>
- <pentabarf:event-slug>critical_overview_of_10_years_pet</pentabarf:event-slug>
- <pentabarf:title>A Critical Overview of 10 years of Privacy Enhancing Technologies</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T113000</dtstart>
- <dtend>20101229T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>A Critical Overview of 10 years of Privacy Enhancing Technologies</summary>
- <description>The objective of the session is to provide a critical overview of "privacy research" within computer science. The mechanisms proposed in the last ten year include mechanisms for anonymous communications, censorship resistance, selective disclosure credentials (and their integration in identity management systems), as well as privacy in databases. All of these system are meant to shield the user from different aspects of on-line surveillance either through allowing a user to keep some of her data "confidential" or by allowing her to assert "control" over her data. We will illustrate using concrete examples, why some paradigms came to dominate the &#64257;eld, their advantages, but also their blind spots, and unfulfilled promises given the conditions of our surveillance societies.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4244.en.html</url>
- <location>Saal 2</location>
- <attendee>seda</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4245@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4245</pentabarf:event-id>
- <pentabarf:event-slug>adventures_in_analyzing_stuxnet</pentabarf:event-slug>
- <pentabarf:title>Adventures in analyzing Stuxnet</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T230000</dtstart>
- <dtend>20101228T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Adventures in analyzing Stuxnet</summary>
- <description>There has been many publications on the topic of Stuxnet and its "sophistication" in the mainstream press. However, there is not a complete publication which explains all of the technical vulnerability details and how they were discovered. In this talk, you will get a first-hand account of the entire story.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4245.en.html</url>
- <location>Saal 1</location>
- <attendee>Bruce Dang</attendee>
- <attendee>Peter Ferrie</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4057@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4057</pentabarf:event-id>
- <pentabarf:event-slug>adventures_in_mapping_afghanistan_elections</pentabarf:event-slug>
- <pentabarf:title>Adventures in Mapping Afghanistan Elections</pentabarf:title>
- <pentabarf:subtitle>The story of 3 Ushahidi mapping and reporting projects.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T214500</dtstart>
- <dtend>20101228T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Adventures in Mapping Afghanistan Elections- The story of 3 Ushahidi mapping and reporting projects.</summary>
- <description>Monitoring and reporting about elections in a war zone is a complex and dangerous task. While crisis mapping carried out via sms and email proved highly successful with the use of Ushahidi in situations like post-election violence in Kenya, tracking crime in Atlanta, or earthquake recovery in Haiti, could it prove useful in such a complex situation as the Afghan political process? This year a team of people set out to do just that with three different Ushahidi mapping projects for national media, national election observers, and international observers. The following presentation is about the challenges we faced, successes we did or did not have, and the lessons learned for the future of crisis mapping.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4057.en.html</url>
- <location>Saal 1</location>
- <attendee>Bicyclemark</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4168@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4168</pentabarf:event-id>
- <pentabarf:event-slug>automated_architecture_independent_gadget_search</pentabarf:event-slug>
- <pentabarf:title>A framework for automated architecture-independent gadget search</pentabarf:title>
- <pentabarf:subtitle>CCC edition</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T143000</dtstart>
- <dtend>20101230T150000</dtend>
- <duration>00H30M00S</duration>
- <summary>A framework for automated architecture-independent gadget search- CCC edition</summary>
- <description>We demonstrate that automated, architecture-independent gadget search is possible. Gadgets are code fragments which can be used to build unintended programs from existing code in memory. Our contribution is a framework of algorithms capable of locating a Turing-complete gadget set.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4168.en.html</url>
- <location>Saal 2</location>
- <attendee>kornau</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4046@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4046</pentabarf:event-id>
- <pentabarf:event-slug>all_colours_are_beautiful</pentabarf:event-slug>
- <pentabarf:title>AllColoursAreBeautiful</pentabarf:title>
- <pentabarf:subtitle>interactive light installation inspired by blinkenlights</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T183000</dtstart>
- <dtend>20101227T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>AllColoursAreBeautiful- interactive light installation inspired by blinkenlights</summary>
- <description>Starting in the beginning of August 2010 and lasting until the mid of November, the project AllColoursAreBeautiful by the Munich chapter of the Chaos Computer Club was serving as a platform for interested people on the world to illuminate, animate and interact with the front of a vacant department store in Munich.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4046.en.html</url>
- <location>Saal 3</location>
- <attendee>Franz Pletz</attendee>
- <attendee>lilafisch</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4114@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4114</pentabarf:event-id>
- <pentabarf:event-slug>analyzing_modern_cryptographic_rfid_stystem</pentabarf:event-slug>
- <pentabarf:title>Analyzing a modern cryptographic RFID system</pentabarf:title>
- <pentabarf:subtitle>HID iClass demystified</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T171500</dtstart>
- <dtend>20101229T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Analyzing a modern cryptographic RFID system- HID iClass demystified</summary>
- <description>Popular contactless systems for physical access control still rely on obscurity. As we have shown, time and time again, proprietary encryption systems are weak and easy to break. In a follow-up to last year's presentation we will now demonstrate attacks on systems with 'proper' cryptographic algorithms.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4114.en.html</url>
- <location>Saal 2</location>
- <attendee>Henryk Pl&#246;tz</attendee>
- <attendee>Milosch Meriac</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4151@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4151</pentabarf:event-id>
- <pentabarf:event-slug>android_geolocation_using_gsm_network</pentabarf:event-slug>
- <pentabarf:title>Android geolocation using GSM network</pentabarf:title>
- <pentabarf:subtitle>"Where was Waldroid?"</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T171500</dtstart>
- <dtend>20101229T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Android geolocation using GSM network- "Where was Waldroid?"</summary>
- <description>We introduce a new forensic technique that allows to collect users' past locations on most current Android phones, within a few seconds. It becomes possible to tell where the user was at a given time, or where a phone call took place over the last few hours or days.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4151.en.html</url>
- <location>Saal 3</location>
- <attendee>Renaud Lifchitz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4144@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4144</pentabarf:event-id>
- <pentabarf:event-slug>short_political_history_of_acoustics</pentabarf:event-slug>
- <pentabarf:title>A short political history of acoustics</pentabarf:title>
- <pentabarf:subtitle>For whom, and to do what, the science of sound was developed in the 17th century</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T160000</dtstart>
- <dtend>20101228T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>A short political history of acoustics- For whom, and to do what, the science of sound was developed in the 17th century</summary>
- <description>The birth of the modern science of acoustics was directly intertwined with the desires to surveill and communicate, either in secret or to everybody at once. Acoustics was not just about 'learning more about nature,' right from the start it was an applied science, driven by very clear notions of who has the right, and thus should have the possibility, of listening in on others, who needs to be able to converse in private, and who should be heard by everybody if he wishes to. How are these historical ideas related to those of today?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4144.en.html</url>
- <location>Saal 3</location>
- <attendee>Oona Leganovic</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4160@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4160</pentabarf:event-id>
- <pentabarf:event-slug>automatic_identification_cryptographic_primitives</pentabarf:event-slug>
- <pentabarf:title>Automatic Identification of Cryptographic Primitives in Software</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T160000</dtstart>
- <dtend>20101227T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Automatic Identification of Cryptographic Primitives in Software</summary>
- <description>In this talk I demonstrate our research and the implementation of methods to detect cryptographic algorithms and their parameters in software. Based on
-our observations on cryptographic code, I will point out several inherent characteristics to design signature-based and generic identification methods.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4160.en.html</url>
- <location>Saal 3</location>
- <attendee>Felix Gr&#246;bert</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4061@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4061</pentabarf:event-id>
- <pentabarf:event-slug>bulding_custom_disassemblers</pentabarf:event-slug>
- <pentabarf:title>Building Custom Disassemblers</pentabarf:title>
- <pentabarf:subtitle>Instruction Set Reverse Engineering</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T171500</dtstart>
- <dtend>20101228T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Building Custom Disassemblers- Instruction Set Reverse Engineering</summary>
- <description>The Reverse Engineer occasionally faces situations where even his most advanced commercial tools do not support the instruction set of an arcane CPU. To overcome this situation, one can develop the missing disassembler. This talk is meant to be a tutorial on how to approach the task, what to focus on first and what surprises one may be in for. The primary focus will be on the transformation of byte code back into mnemonic representation where only the reverse transformation is available (i.e. you have the respective assembler). It also covers how to integrate your new disassembler into your reverse engineering tool chain.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4061.en.html</url>
- <location>Saal 1</location>
- <attendee>FX of Phenoelit</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4298@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4298</pentabarf:event-id>
- <pentabarf:event-slug>ccc_jahresrueckblick_2010</pentabarf:event-slug>
- <pentabarf:title>CCC-Jahresr&#252;ckblick 2010</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T113000</dtstart>
- <dtend>20101229T133000</dtend>
- <duration>02H00M00S</duration>
- <summary>CCC-Jahresr&#252;ckblick 2010</summary>
- <description>Wir berichten &#252;ber vergangene Veranstaltungen, Erfa-Aktivit&#228;ten, Demonstrationen, Hacks, Medienkontakte, Gerichtsverhandlungen, Lobbyarbeit sowie weiteres Erfreuliches und &#196;rgerliches des Jahres 2010 keinesfalls objektiv, sondern mit der gewohnten Hackerperspektive.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4298.en.html</url>
- <location>Saal 1</location>
- <attendee>Andreas Bogk</attendee>
- <attendee>Andy M&#252;ller-Maguhn</attendee>
- <attendee>Constanze Kurz</attendee>
- <attendee>Frank Rieger</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4211@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4211</pentabarf:event-id>
- <pentabarf:event-slug>chip_and_pin_is_broken</pentabarf:event-slug>
- <pentabarf:title>Chip and PIN is Broken</pentabarf:title>
- <pentabarf:subtitle>Vulnerabilities in the EMV Protocol</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T203000</dtstart>
- <dtend>20101229T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Chip and PIN is Broken- Vulnerabilities in the EMV Protocol</summary>
- <description>EMV is the dominant protocol used for smart card payments worldwide, with over 730 million cards in circulation. Known to bank customers as &#8220;Chip and PIN&#8221;, it is used in Europe; it is being introduced in Canada; and there is pressure from banks to introduce it in the USA too. EMV secures credit and debit card transactions by authenticating both the card and the customer presenting it through a combination of cryptographic authentication codes, digital signatures, and the entry of a PIN. In this paper we describe and demonstrate a protocol flaw which allows criminals to use a genuine card to make a payment without knowing the card&#8217;s PIN, and to remain undetected even when the merchant has an online connection to the banking network.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4211.en.html</url>
- <location>Saal 1</location>
- <attendee>Steven J. Murdoch</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4299@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4299</pentabarf:event-id>
- <pentabarf:event-slug>closing_event</pentabarf:event-slug>
- <pentabarf:title>Closing Event</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T183000</dtstart>
- <dtend>20101230T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>Closing Event</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4299.en.html</url>
- <location>Saal 1</location>
- <attendee>Frank Rieger</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4096@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4096</pentabarf:event-id>
- <pentabarf:event-slug>code_deobfuscation_by_optimization</pentabarf:event-slug>
- <pentabarf:title>Code deobfuscation by optimization</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T124500</dtstart>
- <dtend>20101227T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>Code deobfuscation by optimization</summary>
- <description>Optimization algorithms present an effective way for removing most obfuscations that are used today. Much of the compiler theory can be applied in removing obfuscations and building fast and reliable deobfuscation systems. By understanding traditional optimization problems and techniques it is possible to develop and customize compiler optimization algorithms for usage in binary deobfuscation/analysis.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4096.en.html</url>
- <location>Saal 2</location>
- <attendee>Branko Spasojevic</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4276@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4276</pentabarf:event-id>
- <pentabarf:event-slug>cognitive_psychology_for_hackers</pentabarf:event-slug>
- <pentabarf:title>Cognitive Psychology for Hackers</pentabarf:title>
- <pentabarf:subtitle>Bugs, exploits, and occasional patches</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T140000</dtstart>
- <dtend>20101229T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Cognitive Psychology for Hackers- Bugs, exploits, and occasional patches</summary>
- <description>Experience firsthand some of the most interesting, surprising, and perspective-changing findings from cognitive and social neuropsychology. With perceptual illusions, priming, biases, heuristics, and unconscious influences, humans have tons of firmware "bugs". All have exploits; some even have patches.
-
-Learn how to improve your own thinking, use others' bugs to your advantage, and gain new perspective on the unconscious and often illusory processes involved in your perceptions.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4276.en.html</url>
- <location>Saal 3</location>
- <attendee>Sai</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4087@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4087</pentabarf:event-id>
- <pentabarf:event-slug>console_hacking_2010</pentabarf:event-slug>
- <pentabarf:title>Console Hacking 2010</pentabarf:title>
- <pentabarf:subtitle>PS3 Epic Fail</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T160000</dtstart>
- <dtend>20101229T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Console Hacking 2010- PS3 Epic Fail</summary>
- <description>Over 70 million Wiis, over 40 million Xbox 360s and over 35 million Playstation 3s have been sold in the last few years. That makes over 145 million embedded devices out there and most of them are just used to play games. But what can you do with them if you don't like playing games? You hack them to make them run your own code of course!
-We're going to talk about the various hacks that you can use to gain control of your hardware and make it do what you want it to do.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4087.en.html</url>
- <location>Saal 1</location>
- <attendee>bushing</attendee>
- <attendee>marcan</attendee>
- <attendee>sven</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4140@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4140</pentabarf:event-id>
- <pentabarf:event-slug>contemporary_profiling_of_web_users</pentabarf:event-slug>
- <pentabarf:title>Contemporary Profiling of Web Users</pentabarf:title>
- <pentabarf:subtitle>On Using Anonymizers and Still Get Fucked</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T140000</dtstart>
- <dtend>20101227T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Contemporary Profiling of Web Users- On Using Anonymizers and Still Get Fucked</summary>
- <description>This talk will provide a summary of recently discovered methods which allow to break the Internet's privacy and anonymity.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4140.en.html</url>
- <location>Saal 2</location>
- <attendee>Dominik Herrmann</attendee>
- <attendee>lexi</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4103@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4103</pentabarf:event-id>
- <pentabarf:event-slug>copyright_enforcement_versus_freedoms</pentabarf:event-slug>
- <pentabarf:title>Copyright Enforcement Vs. Freedoms</pentabarf:title>
- <pentabarf:subtitle>ACTA, IPRED3 and other upcoming battles of the crusade against sharing</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T124500</dtstart>
- <dtend>20101227T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>Copyright Enforcement Vs. Freedoms- ACTA, IPRED3 and other upcoming battles of the crusade against sharing</summary>
- <description>ACTA, upcoming criminal enforcement directive, filtering of content... The entertainment industries go further and further into their crusade against sharing. They not only attack our fundamental freedoms, but also the very essence of the Internet.
-
-This session is a panorama of the current and upcoming battles, campaigns and actions. Everyone can help defeat the motherf#&#167;$ers!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4103.en.html</url>
- <location>Saal 1</location>
- <attendee>J&#233;r&#233;mie Zimmermann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4003@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4003</pentabarf:event-id>
- <pentabarf:event-slug>cybernetics_for_the_masses</pentabarf:event-slug>
- <pentabarf:title>Cybernetics for the Masses</pentabarf:title>
- <pentabarf:subtitle>implants, sensory extension and silicon - all for you!</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T124500</dtstart>
- <dtend>20101230T133000</dtend>
- <duration>00H45M00S</duration>
- <summary>Cybernetics for the Masses- implants, sensory extension and silicon - all for you!</summary>
- <description>Lightning talk on biohacking, complete with cyborg speaker, implant demonstrations, and knowledge of how to hack your own perception of electromagnetic radiation for approximately thirty Euros.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4003.en.html</url>
- <location>Saal 2</location>
- <attendee>Lepht Anonym</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4067@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4067</pentabarf:event-id>
- <pentabarf:event-slug>data_analysis_in_terabit_ethernet_traffic</pentabarf:event-slug>
- <pentabarf:title>Data Analysis in Terabit Ethernet Traffic</pentabarf:title>
- <pentabarf:subtitle>Solutions for monitoring and lawful interception within a lot of bits</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T140000</dtstart>
- <dtend>20101230T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Data Analysis in Terabit Ethernet Traffic- Solutions for monitoring and lawful interception within a lot of bits</summary>
- <description>Network traffic grows faster than monitoring and analysis tools can handle. During the last two years a couple of appliances hit the market which help in finding the &#8220;bits of interest&#8221;. Recently installed strategies and solutions for carriers, banks or lawful interception organizations will be discussed as examples.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4067.en.html</url>
- <location>Saal 3</location>
- <attendee>Lars Weiler</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4231@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4231</pentabarf:event-id>
- <pentabarf:event-slug>datenrettung_fun_with_hard_drives</pentabarf:event-slug>
- <pentabarf:title>Data Recovery Techniques</pentabarf:title>
- <pentabarf:subtitle>Fun with Hard Drives</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T214500</dtstart>
- <dtend>20101228T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Data Recovery Techniques- Fun with Hard Drives</summary>
- <description>Data recovery has always been an area of myths. This lecture will lift some of their covers.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4231.en.html</url>
- <location>Saal 3</location>
- <attendee>Peter Franck</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4190@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4190</pentabarf:event-id>
- <pentabarf:event-slug>data_retention_in_the_eu</pentabarf:event-slug>
- <pentabarf:title>Data Retention in the EU five years after the Directive</pentabarf:title>
- <pentabarf:subtitle>Why the time is now to get active</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T203000</dtstart>
- <dtend>20101227T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Data Retention in the EU five years after the Directive- Why the time is now to get active</summary>
- <description>2011 will again be a crucial year in the battle against data retention and blanket surveillance. The EU Commission is planning to publish its review of the directive in December (right in time before 27C3), and the lobbying and PR battle has already begun. In six months from now, we will see the legislative proposal from the EU commission for the revision of data retention.
-
-The talk will give a full picture of the legal state of play, what is going on in Brussels, what is already being done and of course where you can help. The speakers are closely involved in the process on the European and national level.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4190.en.html</url>
- <location>Saal 1</location>
- <attendee>axel</attendee>
- <attendee>Katarzyna Szymielewicz</attendee>
- <attendee>Patrick Breyer</attendee>
- <attendee>Ralf Bendrath</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4123@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4123</pentabarf:event-id>
- <pentabarf:event-slug>defense_is_not_dead</pentabarf:event-slug>
- <pentabarf:title>Defense is not dead</pentabarf:title>
- <pentabarf:subtitle>Why we will have more secure computers - tomorrow</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T183000</dtstart>
- <dtend>20101228T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>Defense is not dead- Why we will have more secure computers - tomorrow</summary>
- <description>The security model of our current computer architectures - kernel in ring 0, processes in ring 3 - goes back to the early 70s. However, science hasn't stopped.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4123.en.html</url>
- <location>Saal 2</location>
- <attendee>Andreas Bogk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4017@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4017</pentabarf:event-id>
- <pentabarf:event-slug>desktop_on_the_linux</pentabarf:event-slug>
- <pentabarf:title>Desktop on the Linux... (and BSD, of course)</pentabarf:title>
- <pentabarf:subtitle>you're doing it confused? weird? strange? wrong?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T203000</dtstart>
- <dtend>20101227T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Desktop on the Linux... (and BSD, of course)- you're doing it confused? weird? strange? wrong?</summary>
- <description>Time to take a look back and under the hood of the current state of FOSS based desktops: The Good, The Bad and The Ugly &#8211; Bloat, strange APIs, too much complexity.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4017.en.html</url>
- <location>Saal 2</location>
- <attendee>datenwolf</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4297@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4297</pentabarf:event-id>
- <pentabarf:event-slug>die_gesamte_technik_ist_sicher</pentabarf:event-slug>
- <pentabarf:title>"Die gesamte Technik ist sicher"</pentabarf:title>
- <pentabarf:subtitle>Besitz und Wissen: Relay-Angriffe auf den neuen Personalausweis</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T214500</dtstart>
- <dtend>20101227T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>"Die gesamte Technik ist sicher"- Besitz und Wissen: Relay-Angriffe auf den neuen Personalausweis</summary>
- <description>F&#252;r den neuen elektronischen Personalausweis sind drei verschiedene Leseger&#228;teklassen spezifiziert, von denen die einfachste bereits einige Kritik erfahren hat. Nach der Diskussion um die Sicherheit des Personalausweises stellt sich die Frage: K&#246;nnen zertifizierte Leseger&#228;te den neuen Ausweis sch&#252;tzen?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4297.en.html</url>
- <location>Saal 1</location>
- <attendee>Dominik Oepen</attendee>
- <attendee>Frank Morgner</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4085@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4085</pentabarf:event-id>
- <pentabarf:event-slug>digitale_spaltung_per_gesetz</pentabarf:event-slug>
- <pentabarf:title>Digitale Spaltung per Gesetz</pentabarf:title>
- <pentabarf:subtitle>Das Internet und geschaffene soziale Ungleichheit im Alltag von Erwerbslosen</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T203000</dtstart>
- <dtend>20101229T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Digitale Spaltung per Gesetz- Das Internet und geschaffene soziale Ungleichheit im Alltag von Erwerbslosen</summary>
- <description>Hartz IV-Empfangende brauchen keine internetf&#228;higen Computer, weil sie Fernseher haben. Dieser Ansicht sind deutsche Sozialgerichte und forcieren damit eine digitale Spaltung per Gesetz. Im Zeitalter der digitalen Informations- und Kommunikationsgesellschaft mutet dieser Umstand absurd an, aber eine breite &#246;ffentlichkeitswirksame Debatte steht bisher aus.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4085.en.html</url>
- <location>Saal 2</location>
- <attendee>Betje Schwarz</attendee>
- <attendee>Doris Gerbig</attendee>
- <attendee>Kathrin Englert</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4203@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4203</pentabarf:event-id>
- <pentabarf:event-slug>distributed_fpga_number_crunching_for_the_masses</pentabarf:event-slug>
- <pentabarf:title>Distributed FPGA Number Crunching For The Masses</pentabarf:title>
- <pentabarf:subtitle>How we obtained the equivalent power of a Deep Crack for a fistful of dollars - and how the community can benefit from this</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T113000</dtstart>
- <dtend>20101228T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>Distributed FPGA Number Crunching For The Masses- How we obtained the equivalent power of a Deep Crack for a fistful of dollars - and how the community can benefit from this</summary>
- <description>In 1998, the EFF built "Deep Crack", a machine designed to perform a walk over DES's 56-bit keyspace in nine days, for $250.000. With today's FPGA technology, a cost decrease of 25x can be achieved, as the copacobana project has shown. If that's still too much, two approaches should be considered: Recycling hardware and distributed computing. This talk will be about combining both approaches for the greater good.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4203.en.html</url>
- <location>Saal 2</location>
- <attendee>Felix Domke</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4006@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4006</pentabarf:event-id>
- <pentabarf:event-slug>diy_synthesizers_and_sound_generators</pentabarf:event-slug>
- <pentabarf:title>DIY synthesizers and sound generators</pentabarf:title>
- <pentabarf:subtitle>Where does the sound come from?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T160000</dtstart>
- <dtend>20101229T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>DIY synthesizers and sound generators- Where does the sound come from?</summary>
- <description>At least if you have used all the features of a synthesizer, you probably ask the questions: "How can I modify it? How can I build a synthesizer myself? What features do I personally need?"
-
-This talk covers this topic from a theoretical and technical point of view.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4006.en.html</url>
- <location>Saal 2</location>
- <attendee>Sylwester</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4111@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4111</pentabarf:event-id>
- <pentabarf:event-slug>eins_zwei_drei_alle_sind_dabei</pentabarf:event-slug>
- <pentabarf:title>Eins, zwei, drei - alle sind dabei</pentabarf:title>
- <pentabarf:subtitle>Von der Volksz&#228;hlung zum Bundesmelderegister</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T160000</dtstart>
- <dtend>20101227T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Eins, zwei, drei - alle sind dabei- Von der Volksz&#228;hlung zum Bundesmelderegister</summary>
- <description>Neben einer kurzen Einf&#252;hrung in die Problematik des Zensus 2011, soll es in dem Vortrag auch &#252;ber die CCC Stellungnahmen f&#252;r mehrere Landetage gehen. Weiterhin geht es auch um die mittlerweile abgewiesene Verfassungsbeschwerde des AK Zensus sowie weitere M&#246;glichkeiten "was zu machen".</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4111.en.html</url>
- <location>Saal 2</location>
- <attendee>Oliver "Unicorn" Knapp</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4099@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4099</pentabarf:event-id>
- <pentabarf:event-slug>file_print_electronics</pentabarf:event-slug>
- <pentabarf:title>File -&gt; Print -&gt; Electronics</pentabarf:title>
- <pentabarf:subtitle>A new circuit board printer will liberate you from the Arduino-Industrial Complex</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T113000</dtstart>
- <dtend>20101228T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>File -&gt; Print -&gt; Electronics- A new circuit board printer will liberate you from the Arduino-Industrial Complex</summary>
- <description>Are you ready to wake up from the cult of Arduino? Tired of plugging together black-box pre-built modules like a mindless drone, copying and pasting in code you found on Hackaday? You've soldered together your TV-Be-Gone, built your fifth Minty Boost, and your bench is awash with discarded Adafruit packaging and Make magazines. It's time to stop this passive consumption. It's time to create something that is truly yours. It's time, my friend, to design your first circuit board. And you'll need a machine to print it.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4099.en.html</url>
- <location>Saal 1</location>
- <attendee>Jeff Gough</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4070@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4070</pentabarf:event-id>
- <pentabarf:event-slug>fnord_jahresrueckblick_2010</pentabarf:event-slug>
- <pentabarf:title>Fnord-Jahresr&#252;ckblick 2010</pentabarf:title>
- <pentabarf:subtitle>von Atomausstieg bis Zwangsintegration</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T214500</dtstart>
- <dtend>20101229T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Fnord-Jahresr&#252;ckblick 2010- von Atomausstieg bis Zwangsintegration</summary>
- <description>Auch dieses Jahr werden wir uns wieder bem&#252;hen, Euch mit einem R&#252;ckblick auf die Fnords des Jahres zu unterhalten.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4070.en.html</url>
- <location>Saal 1</location>
- <attendee>Felix von Leitner</attendee>
- <attendee>Frank Rieger</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4334@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4334</pentabarf:event-id>
- <pentabarf:event-slug>fnord_jahresrueckblick_2010_translation</pentabarf:event-slug>
- <pentabarf:title>Fnord-Jahresr&#252;ckblick 2010 (english translation)</pentabarf:title>
- <pentabarf:subtitle>von Atomausstieg bis Zwangsintegration</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T214500</dtstart>
- <dtend>20101229T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Fnord-Jahresr&#252;ckblick 2010 (english translation)- von Atomausstieg bis Zwangsintegration</summary>
- <description>Auch dieses Jahr werden wir uns wieder bem&#252;hen, Euch mit einem R&#252;ckblick auf die Fnords des Jahres zu unterhalten.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4334.en.html</url>
- <location>Saal 2</location>
- <attendee>Felix von Leitner</attendee>
- <attendee>Frank Rieger</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4164@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4164</pentabarf:event-id>
- <pentabarf:event-slug>friede_sei_mit_euren_daten</pentabarf:event-slug>
- <pentabarf:title>Friede sei mit Euren Daten</pentabarf:title>
- <pentabarf:subtitle>Ein datenschutzrechtlicher Ausflug in ein kirchliches Parelleluniversum</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T171500</dtstart>
- <dtend>20101227T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Friede sei mit Euren Daten- Ein datenschutzrechtlicher Ausflug in ein kirchliches Parelleluniversum</summary>
- <description>Bundesdeutscher und kirchlicher Datenschutz f&#252;hren eine Parallelexistenz. W&#228;hrend das Bundesdatenschutzgesetz von der &#214;ffentlichkeit wahrgenommen und kritisch begleitet wird, ist den Wenigsten &#252;berhaupt klar, dass es auch einen vom BDSG losgel&#246;sten Datenschutz innerhalb der Kirchen gibt, der sich in einigen wichtigen Punkten vom staatlichen unterscheidet. Dieser Vortrag soll das Bewusstsein f&#252;r ein Recht wecken, von dem sechzig Prozent der Deutschen betroffen sind &#8211; oft ohne es zu wissen. Praxisbeispiele und Tipps inbegriffen.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4164.en.html</url>
- <location>Saal 2</location>
- <attendee>Jochim Selzer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4175@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4175</pentabarf:event-id>
- <pentabarf:event-slug>from_robot_to_robot</pentabarf:event-slug>
- <pentabarf:title>From robot to robot</pentabarf:title>
- <pentabarf:subtitle>Restoring creativity in school pupils using robotics</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T124500</dtstart>
- <dtend>20101227T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>From robot to robot- Restoring creativity in school pupils using robotics</summary>
- <description>Today, hacking is reserved for the microscopic fraction of the population who manage to shake themselves free of the suppressive education regime. Student Robotics is the beginning of the solution. By fostering creativity through competition to solve engineering challenges, we provide the inspiration society desperately needs. We develop an open platform for robotics and provide it to schools to open students' minds to the world of hacking.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4175.en.html</url>
- <location>Saal 3</location>
- <attendee>Robert Spanton</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4018@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4018</pentabarf:event-id>
- <pentabarf:event-slug>frozencache</pentabarf:event-slug>
- <pentabarf:title>FrozenCache</pentabarf:title>
- <pentabarf:subtitle>Mitigating cold-boot attacks for Full-Disk-Encryption software</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T230000</dtstart>
- <dtend>20101230T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>FrozenCache- Mitigating cold-boot attacks for Full-Disk-Encryption software</summary>
- <description>Cold boot attacks are a major risk for the protection that Full-Disk-Encryption solutions provide. FrozenCache is a general-purpose solution to this attack for x86 based systems that employs a special CPU cache mode known as "Cache-as-RAM". Switching the CPU cache into a special mode forces data to held exclusively in the CPU cache and not to be written to the backing RAM locations, thus safeguarding data from being obtained from RAM by means of cold boot attacks.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4018.en.html</url>
- <location>Saal 3</location>
- <attendee>Juergen Pabel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4141@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4141</pentabarf:event-id>
- <pentabarf:event-slug>hacker_jeopardy</pentabarf:event-slug>
- <pentabarf:title>Hacker Jeopardy</pentabarf:title>
- <pentabarf:subtitle>Number guessing for geeks</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T230000</dtstart>
- <dtend>20101230T010000</dtend>
- <duration>02H00M00S</duration>
- <summary>Hacker Jeopardy- Number guessing for geeks</summary>
- <description>The Hacker Jeopardy is a quiz show.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4141.en.html</url>
- <location>Saal 1</location>
- <attendee>Ray</attendee>
- <attendee>Stefan 'Sec' Zehl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4333@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4333</pentabarf:event-id>
- <pentabarf:event-slug>hacker_jeopardy_translation</pentabarf:event-slug>
- <pentabarf:title>Hacker Jeopardy (english translation)</pentabarf:title>
- <pentabarf:subtitle>Number guessing for geeks</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T230000</dtstart>
- <dtend>20101230T010000</dtend>
- <duration>02H00M00S</duration>
- <summary>Hacker Jeopardy (english translation)- Number guessing for geeks</summary>
- <description>The Hacker Jeopardy is a quiz show.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4333.en.html</url>
- <location>Saal 2</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>3983@27C3@pentabarf.org</uid>
- <pentabarf:event-id>3983</pentabarf:event-id>
- <pentabarf:event-slug>hackers_and_computer_science</pentabarf:event-slug>
- <pentabarf:title>Hackers and Computer Science</pentabarf:title>
- <pentabarf:subtitle>What hacker research taught me</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T134500</dtstart>
- <dtend>20101230T141500</dtend>
- <duration>00H30M00S</duration>
- <summary>Hackers and Computer Science- What hacker research taught me</summary>
- <description>Although most academics and industry practitioners regard "hacking" as mostly ad-hoc, a loose collection of useful tricks essentially random in nature, I will argue that hacking has in fact become a "distinct research and engineering discipline" with deep underlying engineering ideas and insights. Although not yet formally defined as such, it are these ideas and insights that drive the great contributions that hacking has been making to our understanding of computing, including the challenges of handling complexity, composition, and security in complex systems. I will argue that hacking uncovers and helps to understand (and teach) fundamental issues that go to the heart of Computer Science as we know it, and will try to formulate several such fundamental principles which I have learned from hacker research.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/3983.en.html</url>
- <location>Saal 2</location>
- <attendee>Sergey</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4176@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4176</pentabarf:event-id>
- <pentabarf:event-slug>hacking_ibuttons</pentabarf:event-slug>
- <pentabarf:title>Hacking iButtons</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T203000</dtstart>
- <dtend>20101227T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking iButtons</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4176.en.html</url>
- <location>Saal 3</location>
- <attendee>Christian Brandt</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4265@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4265</pentabarf:event-id>
- <pentabarf:event-slug>hacking_smart_phones</pentabarf:event-slug>
- <pentabarf:title>hacking smart phones</pentabarf:title>
- <pentabarf:subtitle>expanding the attack surface and then some</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T183000</dtstart>
- <dtend>20101227T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>hacking smart phones- expanding the attack surface and then some</summary>
- <description>There's been a fair bit written and presented about smartphone's, and yet, when it comes to the attack surface of the operating systems running on them, and the applications running on top of those, much still has to be explorer. This talk will dive a bit deeper into that attack surface.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4265.en.html</url>
- <location>Saal 2</location>
- <attendee>Ilja van Sprundel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4193@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4193</pentabarf:event-id>
- <pentabarf:event-slug>having_fun_with_rtp</pentabarf:event-slug>
- <pentabarf:title>Having fun with RTP</pentabarf:title>
- <pentabarf:subtitle>&#8222;Who is speaking???&#8220; </pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T171500</dtstart>
- <dtend>20101230T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Having fun with RTP- &#8222;Who is speaking???&#8220; </summary>
- <description>A lot of people are interested and involved in voice over IP security. Most of the effort is concentrated on the security of the signalling protocols. This talk is focussing on the security of the voice part involved in todays voice over IP world. It is the result of the questions that I had to ask myself while i was debugging audio quality problems of customers and implementing a RTP stack from scratch.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4193.en.html</url>
- <location>Saal 3</location>
- <attendee>kapejod</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4295@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4295</pentabarf:event-id>
- <pentabarf:event-slug>high_speed_high_security_cryptography</pentabarf:event-slug>
- <pentabarf:title>High-speed high-security cryptography: encrypting and authenticating the whole Internet</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T203000</dtstart>
- <dtend>20101228T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>High-speed high-security cryptography: encrypting and authenticating the whole Internet</summary>
- <description>Are you writing a program that sends data through the Internet? Are you sending the data through HTTP, or SMTP, or simply TCP, leaving it vulnerable to espionage, corruption, and sabotage by anyone who owns a machine connected to the same network?
-
-You can use SSH and IPsec to protect communication with your own machines, but how do you talk to the rest of the Internet? You can use TCPcrypt to protect yourself against attackers too lazy to forge packets, but how do you protect yourself against serious attackers? You can use HTTPS for low-frequency communication, but how do you handle heavy network traffic, and how do you protect yourself against the security flaws in HTTPS? Today's Internet cryptography is slow, untrustworthy, hard to use, and remarkably unsuccessful as a competitor to good old unprotected TCP.
-
-This talk will present a different approach to high-security Internet cryptography. This approach is easy for users, easy for system administrators, and, perhaps most importantly, easy for programmers. The main reason that the approach has not been tried before is that it seems to involve very slow cryptographic operations; this talk will show that the approach is extremely fast when it is done right.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4295.en.html</url>
- <location>Saal 1</location>
- <attendee>Daniel J. Bernstein</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4301@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4301</pentabarf:event-id>
- <pentabarf:event-slug>flow_analysis_of_internet_activities</pentabarf:event-slug>
- <pentabarf:title>How the Internet sees you</pentabarf:title>
- <pentabarf:subtitle>demonstrating what activities most ISPs see you doing on the Internet</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T160000</dtstart>
- <dtend>20101230T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>How the Internet sees you- demonstrating what activities most ISPs see you doing on the Internet</summary>
- <description>On the Internet one tends to think that one is pretty much safe from poking eyes. Taps in most countries can only be established after a judge has issued a warrant, thus upto such a tap is succesfully deployed one might think one is pretty much in the clear.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4301.en.html</url>
- <location>Saal 1</location>
- <attendee>Jeroen Massar</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4089@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4089</pentabarf:event-id>
- <pentabarf:event-slug>ich_sehe_nicht_dass_wir_nicht_zustimmen_werden</pentabarf:event-slug>
- <pentabarf:title>Ich sehe nicht, dass wir nicht zustimmen werden</pentabarf:title>
- <pentabarf:subtitle>Die Sprache des politischen Verrats und seiner Rechtfertigung</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101230T124500</dtstart>
- <dtend>20101230T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>Ich sehe nicht, dass wir nicht zustimmen werden- Die Sprache des politischen Verrats und seiner Rechtfertigung</summary>
- <description>Der Vortrag zeigt auf, wie sich Politiker rechtfertigen, wenn sie gegen ihre Argumentation und die &#220;berzeugungen entscheiden oder handeln, f&#252;r die sie stehen. Es ergibt sich dabei eine extreme Zwangslage, denn es ist oft nicht so einfach m&#246;glich, die zuvor vorgebrachten Argumente aufzugeben. Also muss auf Leerformeln, Nebelkerzen, Scheinargumente und spezielle grammatische Mittel zur&#252;ckgegriffen werden, die die Regresspflicht mindern (Konjunktive, doppelte Verneinungen, Modalpartikeln usw.); dabei sind Kunstgriffe n&#246;tig, die &#252;ber die inzwischen hinl&#228;nglich bekannte Leyen-Rhetorik hinausgehen.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4089.en.html</url>
- <location>Saal 1</location>
- <attendee>maha/Martin Haase</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4149@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4149</pentabarf:event-id>
- <pentabarf:event-slug>i_control_your_code</pentabarf:event-slug>
- <pentabarf:title>I Control Your Code</pentabarf:title>
- <pentabarf:subtitle>Attack Vectors Through the Eyes of Software-based Fault Isolation</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T140000</dtstart>
- <dtend>20101228T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>I Control Your Code- Attack Vectors Through the Eyes of Software-based Fault Isolation</summary>
- <description>Unsafe languages and an arms race for new bugs calls for an additional line of defense in software systems. User-space virtualization uses dynamic instrumentation to detect different attack vectors and protects from the execution of malicious code. An additional advantage of these virtualization systems is that they can be used to analyze different exploits step by step and to extract the exploit code from a running program.
-
-This talk explains the concept of different attack vectors (stack buffer overflows, format string attacks, return to libc attacks, race attacks / TOCTTOU, integer overflows, heap buffer overflows, and code anomalies). For each of these attack vectors we show possible exploits and explain how the virtualization system is able to detect and prevent the exploit.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4149.en.html</url>
- <location>Saal 3</location>
- <attendee>Mathias Payer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4084@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4084</pentabarf:event-id>
- <pentabarf:event-slug>ignorance_and_peace_narratives_in_cyberspace</pentabarf:event-slug>
- <pentabarf:title>Ignorance and Peace Narratives in Cyberspace</pentabarf:title>
- <pentabarf:subtitle>Cloud Computing, Assessment, and Fools like Me.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T134500</dtstart>
- <dtend>20101229T141500</dtend>
- <duration>00H30M00S</duration>
- <summary>Ignorance and Peace Narratives in Cyberspace- Cloud Computing, Assessment, and Fools like Me.</summary>
- <description>This paper explores the challenges of being proactive with existing and future data mining possibilities when facing the realities of institutional expectations for assessment and when facing the fact that one&#8217;s own understanding of cyber capabilities is less than ideal. This paper discusses the current assessment cyber resources, trends, and pressures within USA academic institutions and the challenges of reactive/proactive labor in the midst of multiple levels of technological/informational literacies amongst administrators.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4084.en.html</url>
- <location>Saal 2</location>
- <attendee>Angela Crow</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4206@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4206</pentabarf:event-id>
- <pentabarf:event-slug>immi_from_concept_to_reality</pentabarf:event-slug>
- <pentabarf:title>IMMI, from concept to reality</pentabarf:title>
- <pentabarf:subtitle>The Icelandic Modern Media Initiative and our need for a well-regulated flow of information</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T171500</dtstart>
- <dtend>20101229T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>IMMI, from concept to reality- The Icelandic Modern Media Initiative and our need for a well-regulated flow of information</summary>
- <description>The talk will give an update on the status of the Icelandic Modern Media Initiative. If we put IMMI into the context of the bus Rop talked about in the keynote, then IMMI is the quality rubber for the tires that can ride that road safely. It is part of what our bus should look like, ride like, feel like. The talk will also try to define some more of that bus, and elaborate on what else we need apart from the best rubber we can get.
-
-The talk will hence deal with some of the latest developments in respect to freedom of speech, specifically that of the press, and political pressure being excersized on it, roles and responsibilities, and the role of responsibility.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4206.en.html</url>
- <location>Saal 1</location>
- <attendee>Daniel Domscheit-Berg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4237@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4237</pentabarf:event-id>
- <pentabarf:event-slug>indect_eu_surveillance_project</pentabarf:event-slug>
- <pentabarf:title>INDECT - an EU-Surveillance Project</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T183000</dtstart>
- <dtend>20101229T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>INDECT - an EU-Surveillance Project</summary>
- <description>INDECT
-
-The acronym stands for Intelligent Information System Supporting Observation, Searching and Detection for Security of Citizens in Urban Environment.
-A total of 17 partners in nine member states are developing an infrastructure for linking existing surveillance technologies to form one mighty instrument for controlling the people. They are laying the foundation of a European police state, since INDECT's results serve to increase the effectiveness of police operation on the national and European level.
-INDECT is funded under the European Commission's Seventh Framework Programme (FP7), the security-related research of which provides &#8364; 1.4 billion Euro for more than 60 partly interlaced projects.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4237.en.html</url>
- <location>Saal 2</location>
- <attendee>Sylvia Johnigk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4236@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4236</pentabarf:event-id>
- <pentabarf:event-slug>international_cyber_jurisdiction</pentabarf:event-slug>
- <pentabarf:title>International Cyber Jurisdiction</pentabarf:title>
- <pentabarf:subtitle>Kill Switching&#8221; Cyberspace, Cyber Criminal Prosecution &amp; Jurisdiction Hopping</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T160000</dtstart>
- <dtend>20101230T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>International Cyber Jurisdiction- Kill Switching&#8221; Cyberspace, Cyber Criminal Prosecution &amp; Jurisdiction Hopping</summary>
- <description>Concepts of sovereignty, freedom, privacy and intellectual property become amorphous when discussing territories that only exists as far as the Internet connects. International cyber jurisdiction is supported by a complicated web of international law and treaties. Jurisdiction hopping, a technique that is becoming popular for controversial content, is one we have used for the U.S. 1st Amendment censorship-resistant and non-profit hosting company, Project DOD, by using PRQ's services in Sweden. This technique is used to place assets in a diverse, but accessible, web of countries in which that content may be legal in the hosting country, but may have legal complications in the country in which it is accessed. As ownership and protection of property becomes a concept that is difficult to maintain across boundaries that are not easily distinguishable, can the U.S. "kill-switch" parts of the Internet and under what authority can it be done? Similarly, the geographic challenges to international cyber criminal law &#8211; and the feasibility of new sovereign nations &#8211; will be analyzed. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4236.en.html</url>
- <location>Saal 2</location>
- <attendee>TiffanyRad</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4121@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4121</pentabarf:event-id>
- <pentabarf:event-slug>is_the_ssliverse_a_safe_place</pentabarf:event-slug>
- <pentabarf:title>Is the SSLiverse a safe place?</pentabarf:title>
- <pentabarf:subtitle>An update on EFF's SSL Observatory project</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T160000</dtstart>
- <dtend>20101228T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Is the SSLiverse a safe place?- An update on EFF's SSL Observatory project</summary>
- <description>The EFF SSL Observatory has collected a dataset of all TLS/HTTPS certificates visible on the public web. We discuss this dataset - what we have learned from it, how you can use it, and how intend to offer a live, continually updated version of it.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4121.en.html</url>
- <location>Saal 2</location>
- <attendee>Jesse</attendee>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4011@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4011</pentabarf:event-id>
- <pentabarf:event-slug>embedded_reverse_engineering</pentabarf:event-slug>
- <pentabarf:title>JTAG/Serial/FLASH/PCB Embedded Reverse Engineering Tools and Techniques</pentabarf:title>
- <pentabarf:subtitle>a dump of simple tools for embedded analysis at many layers</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T140000</dtstart>
- <dtend>20101227T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>JTAG/Serial/FLASH/PCB Embedded Reverse Engineering Tools and Techniques- a dump of simple tools for embedded analysis at many layers</summary>
- <description>Bring your target. Will release a slew of simple tools that explore attack surfaces and explain of how to use: jtag/serial scanners, parallel flash dumper, DePCB board routing analysis. So, crossover from software RE and start hacking/improving like its 1996 again. (full documentation and reference at: http://events.ccc.de/congress/2010/wiki/Embedded_Analysis)</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4011.en.html</url>
- <location>Saal 3</location>
- <attendee>Nathan Fain</attendee>
- <attendee>Vadik</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4296@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4296</pentabarf:event-id>
- <pentabarf:event-slug>lightning_days_d2</pentabarf:event-slug>
- <pentabarf:title>Lightning Talks - Day 2</pentabarf:title>
- <pentabarf:subtitle>4 minutes of fame</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T124500</dtstart>
- <dtend>20101228T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>Lightning Talks - Day 2- 4 minutes of fame</summary>
- <description>4 minutes for every speaker. Learn about the good, the bad, and the ugly - in software, hardware, projects, and more.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4296.en.html</url>
- <location>Saal 3</location>
- <attendee>Nick Farr</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4239@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4239</pentabarf:event-id>
- <pentabarf:event-slug>lightning_talks_d3</pentabarf:event-slug>
- <pentabarf:title>Lightning Talks - Day 3</pentabarf:title>
- <pentabarf:subtitle>where is my community?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T113000</dtstart>
- <dtend>20101229T134500</dtend>
- <duration>02H15M00S</duration>
- <summary>Lightning Talks - Day 3- where is my community?</summary>
- <description>4 minutes for every speaker. Learn about the good, the bad, and the ugly - in software, hardware, projects, and more. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4239.en.html</url>
- <location>Saal 3</location>
- <attendee>Nick Farr</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4300@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4300</pentabarf:event-id>
- <pentabarf:event-slug>lightning_talks_d4</pentabarf:event-slug>
- <pentabarf:title>Lightning Talks - Day 4</pentabarf:title>
- <pentabarf:subtitle>where is my community?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T113000</dtstart>
- <dtend>20101230T134500</dtend>
- <duration>02H15M00S</duration>
- <summary>Lightning Talks - Day 4- where is my community?</summary>
- <description>4 minutes for every speaker. Learn about the good, the bad, and the ugly - in software, hardware, projects, and more.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4300.en.html</url>
- <location>Saal 3</location>
- <attendee>Nick Farr</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4195@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4195</pentabarf:event-id>
- <pentabarf:event-slug>literarischer_abend</pentabarf:event-slug>
- <pentabarf:title>Literarischer Abend</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101228T171500</dtstart>
- <dtend>20101228T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Literarischer Abend</summary>
- <description>Ein literarischer Abend im Quartett.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4195.en.html</url>
- <location>Saal 2</location>
- <attendee>Andreas Lehner</attendee>
- <attendee>Lars</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4073@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4073</pentabarf:event-id>
- <pentabarf:event-slug>logikschaltungen_ohne_elektronik</pentabarf:event-slug>
- <pentabarf:title>Logikschaltungen ohne Elektronik</pentabarf:title>
- <pentabarf:subtitle>logische Schaltungen mit Pneumatik</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101228T143000</dtstart>
- <dtend>20101228T150000</dtend>
- <duration>00H30M00S</duration>
- <summary>Logikschaltungen ohne Elektronik- logische Schaltungen mit Pneumatik</summary>
- <description>Ein kurzer &#220;berblick &#252;ber mechanische und str&#246;mungstechnische Logikschaltungen und Computer</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4073.en.html</url>
- <location>Saal 2</location>
- <attendee>&#196;pex</attendee>
- <attendee>xif</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4210@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4210</pentabarf:event-id>
- <pentabarf:event-slug>lying_to_the_neighbours</pentabarf:event-slug>
- <pentabarf:title>Lying To The Neighbours</pentabarf:title>
- <pentabarf:subtitle>Nasty effects with tracker-less BitTorrent</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T130000</dtstart>
- <dtend>20101228T133000</dtend>
- <duration>00H30M00S</duration>
- <summary>Lying To The Neighbours- Nasty effects with tracker-less BitTorrent</summary>
- <description>Distributed Hash Tables implement Routing and Addressability in large P2P networks. In the Kademlia adaption for Bittorrent a peer's address (NodeID) is to be generated randomly, or more appropriate: arbitrarily. Because randomness isn't verifiable, an implementation can advertise itself with popular NodeIDs or even change them on a per-packet basis.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4210.en.html</url>
- <location>Saal 2</location>
- <attendee>Astro</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4081@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4081</pentabarf:event-id>
- <pentabarf:event-slug>netzmedienrecht_lobbyismus_korruption</pentabarf:event-slug>
- <pentabarf:title>Netzmedienrecht, Lobbyismus und Korruption</pentabarf:title>
- <pentabarf:subtitle>Wie wirkt die Lobby von Medienkonzernen?</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101228T171500</dtstart>
- <dtend>20101228T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Netzmedienrecht, Lobbyismus und Korruption- Wie wirkt die Lobby von Medienkonzernen?</summary>
- <description>Die Mediennutzung, aber auch ihre Verwaltung und Verg&#252;tung, also ihr Management, m&#252;ssen an eine digitale Netzwelt angepasst werden. Wie ist der Stand der juristischen Auseinandersetzung um die Rechte von Urhebern, Verwertern und Nutzern von Medieninhalten? Wie und wo setzen sich starke Wirtschaftsinteressen mit Lobbygruppen durch?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4081.en.html</url>
- <location>Saal 3</location>
- <attendee>Thomas Barth</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4094@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4094</pentabarf:event-id>
- <pentabarf:event-slug>netzneutralitaet_und_qos</pentabarf:event-slug>
- <pentabarf:title>Netzneutralit&#228;t und QoS - ein Widerspruch?</pentabarf:title>
- <pentabarf:subtitle>Fakten auf den Tisch</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T183000</dtstart>
- <dtend>20101227T200000</dtend>
- <duration>01H30M00S</duration>
- <summary>Netzneutralit&#228;t und QoS - ein Widerspruch?- Fakten auf den Tisch</summary>
- <description>Geht es mit der Netzneutralit&#228;t zu Ende? Was haben wir den Lobbyisten und PR-Leuten der Telekommunikationsunternehmen argumentativ entgegenzusetzen? Was sind die Fakten, was geh&#246;rt ins Reich der Mythen?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4094.en.html</url>
- <location>Saal 1</location>
- <attendee>Andreas Bogk</attendee>
- <attendee>Falk L&#252;ke</attendee>
- <attendee>scusi</attendee>
- <attendee>Uli Blumenthal</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4261@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4261</pentabarf:event-id>
- <pentabarf:event-slug>key_recovery_attacks_rc4</pentabarf:event-slug>
- <pentabarf:title>News Key Recovery Attacks on RC4/WEP</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T171500</dtstart>
- <dtend>20101230T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>News Key Recovery Attacks on RC4/WEP</summary>
- <description>In this paper, we present several weaknesses in the stream cipher RC4.
-First, we present a technique to automatically reveal linear
-correlations in the PRGA of RC4. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4261.en.html</url>
- <location>Saal 2</location>
- <attendee>Martin Vuagnoux</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4142@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4142</pentabarf:event-id>
- <pentabarf:event-slug>nodejs_as_a_networking_tool</pentabarf:event-slug>
- <pentabarf:title>Node.js as a networking tool</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T134500</dtstart>
- <dtend>20101228T141500</dtend>
- <duration>00H30M00S</duration>
- <summary>Node.js as a networking tool</summary>
- <description>Node.js is a library that provides non-blocking I/O for Google's V8 JavaScript engine. This talk explores node's suitability for a diverse range of networking applications.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4142.en.html</url>
- <location>Saal 2</location>
- <attendee>Felix Geisend&#246;rfer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4221@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4221</pentabarf:event-id>
- <pentabarf:event-slug>omg_wtf_pdf</pentabarf:event-slug>
- <pentabarf:title>OMG WTF PDF</pentabarf:title>
- <pentabarf:subtitle>What you didn't know about Acrobat</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T113000</dtstart>
- <dtend>20101230T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>OMG WTF PDF- What you didn't know about Acrobat</summary>
- <description>Ambiguities in the PDF specification means that no two PDF parsers will see a file in the same way. This leads to many opportunities for exploit obfuscation.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4221.en.html</url>
- <location>Saal 1</location>
- <attendee>Julia Wolf</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4339@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4339</pentabarf:event-id>
- <pentabarf:event-slug>openleaks</pentabarf:event-slug>
- <pentabarf:title>OpenLeaks</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T160000</dtstart>
- <dtend>20101230T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>OpenLeaks</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4339.en.html</url>
- <location>Saal 3</location>
- <attendee>Daniel Domscheit-Berg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4143@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4143</pentabarf:event-id>
- <pentabarf:event-slug>parttimescientists</pentabarf:event-slug>
- <pentabarf:title>Part-Time Scientists</pentabarf:title>
- <pentabarf:subtitle>One year of Rocket Science!</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T160000</dtstart>
- <dtend>20101228T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Part-Time Scientists- One year of Rocket Science!</summary>
- <description>The Part-Time Scientists is an international team of Scientists and Engineers participating in the first private race to the moon, the Google Lunar X-Prize. Our approach to win this competition is quite unique as everyone involved really is a part-time scientist.
-
-In our presentation we will present our latest lunar rover, lander, electronic and communications developments.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4143.en.html</url>
- <location>Saal 1</location>
- <attendee>Karsten Becker</attendee>
- <attendee>Robert Boehme</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4253@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4253</pentabarf:event-id>
- <pentabarf:event-slug>pentanews_game_show</pentabarf:event-slug>
- <pentabarf:title>Pentanews Game Show</pentabarf:title>
- <pentabarf:subtitle>Your opponents will be riddled as well</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T001500</dtstart>
- <dtend>20101228T011500</dtend>
- <duration>01H00M00S</duration>
- <summary>Pentanews Game Show- Your opponents will be riddled as well</summary>
- <description>Out of the news section of the [C3D2](http://www.c3d2.de "CCC Dresden") [radio programme](http://www.pentamedia.org/pentaradio Pentaradio24) we've compiled an entertaining game show, an Internet-based multiplayer "Who becomes millionaire?" challenge. The audience and folks on the peace missions are asked to help the players.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4253.en.html</url>
- <location>Saal 1</location>
- <attendee>Alien8</attendee>
- <attendee>Astro</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4326@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4326</pentabarf:event-id>
- <pentabarf:event-slug>radio_der_zukunft</pentabarf:event-slug>
- <pentabarf:title>Radio der Zukunft</pentabarf:title>
- <pentabarf:subtitle>Was kommt nach dem analogen Radio?</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T140000</dtstart>
- <dtend>20101229T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Radio der Zukunft- Was kommt nach dem analogen Radio?</summary>
- <description>Radio &#8211; das ist eine der wenigen elektronischen Medientechnologien, die den Sprung in die digitale &#196;ra noch nicht richtig geschafft hat. W&#228;hrend die Fernsehverbreitung schon fast vollst&#228;ndig per volldigitalen Systemen wie DVB-T stattfindet, bleiben die Radiosender dem guten alten Analog-Funk auf UKW treu. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4326.en.html</url>
- <location>Saal 1</location>
- <attendee>Peter Welchering</attendee>
- <attendee>Ralph M&#252;ller-Schmid</attendee>
- <attendee>Tim Pritlove</attendee>
- <attendee>Willi Steul</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>3957@27C3@pentabarf.org</uid>
- <pentabarf:event-id>3957</pentabarf:event-id>
- <pentabarf:event-slug>ipv6_insecurities</pentabarf:event-slug>
- <pentabarf:title>Recent advances in IPv6 insecurities</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T214500</dtstart>
- <dtend>20101227T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Recent advances in IPv6 insecurities</summary>
- <description>New protocol features have been proposed and implemented in the last 5 years and ISPs are now slowly starting to deploy IPv6. This talk starts with a brief summary of the issues presented five years ago, and then expands on the new risks.
-Discovered implemention security issues in Windows 7/2008, Linux and Cisco will be shown too. Comes with a GPL'ed toolkit: thc-ipv6</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/3957.en.html</url>
- <location>Saal 2</location>
- <attendee>vanHauser</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4036@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4036</pentabarf:event-id>
- <pentabarf:event-slug>reverse_engineering_a_real_word_rfid_payment_system</pentabarf:event-slug>
- <pentabarf:title>Reverse Engineering a real-world RFID payment system</pentabarf:title>
- <pentabarf:subtitle>Corporations enabling citizens to print digital money</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T203000</dtstart>
- <dtend>20101229T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>Reverse Engineering a real-world RFID payment system- Corporations enabling citizens to print digital money</summary>
- <description>How to reverse engineer the data format of a real-world RFID based debit card system.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4036.en.html</url>
- <location>Saal 3</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4159@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4159</pentabarf:event-id>
- <pentabarf:event-slug>reverse_engineering_mos_6502</pentabarf:event-slug>
- <pentabarf:title>Reverse Engineering the MOS 6502 CPU</pentabarf:title>
- <pentabarf:subtitle>3510 transistors in 60 minutes</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T124500</dtstart>
- <dtend>20101228T134500</dtend>
- <duration>01H00M00S</duration>
- <summary>Reverse Engineering the MOS 6502 CPU- 3510 transistors in 60 minutes</summary>
- <description>The MOS 6502 CPU, which was designed in 1975 and powered systems like the Apple II, the Atari 2600, the Nintendo NES and the Commodore 64 for two decades, has always been subject to intense reverse engineering of its inner workings. Only recently, the Visual6502.org project has converted a hi-res die-shot of the 6502 into a polygon model suitable for visually simulating the original mask at the transistor level. This talk will present the way from a chip package to a digital representation, how to simulate transistors in software, and new insights gained form this research about 6502 internals, like "illegal" opcodes.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4159.en.html</url>
- <location>Saal 1</location>
- <attendee>Michael Steil</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4082@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4082</pentabarf:event-id>
- <pentabarf:event-slug>sap_landscape</pentabarf:event-slug>
- <pentabarf:title>Rootkits and Trojans on Your SAP Landscape</pentabarf:title>
- <pentabarf:subtitle>SAP Security and the Enterprise</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T230000</dtstart>
- <dtend>20101228T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Rootkits and Trojans on Your SAP Landscape- SAP Security and the Enterprise</summary>
- <description>SAP systems are the heart of many enterprises. Most critical business functions run on SAP Applications and the complexity of these systems makes it very difficult to protect against attackers. Default setups, forgotten/unimplemented security configurations, weak password management and change processes that apply to one &#8216;unimportant&#8217; system can result in complete compromise of the SAP landscape. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4082.en.html</url>
- <location>Saal 3</location>
- <attendee>Ertunga Arsal</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>3952@27C3@pentabarf.org</uid>
- <pentabarf:event-id>3952</pentabarf:event-id>
- <pentabarf:event-slug>running_your_own_gsm_stack_on_a_phone_osmocombb</pentabarf:event-slug>
- <pentabarf:title>Running your own GSM stack on a phone</pentabarf:title>
- <pentabarf:subtitle>Introducing Project OsmocomBB</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T183000</dtstart>
- <dtend>20101229T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>Running your own GSM stack on a phone- Introducing Project OsmocomBB</summary>
- <description>In recent years, we have seen several Free Software projects implementing the network side of the GSM protocol. In 2010, OsmocomBB was started to create a free software implementation of the telephone-side.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/3952.en.html</url>
- <location>Saal 1</location>
- <attendee>Harald Welte</attendee>
- <attendee>Steve Markgraf</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4183@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4183</pentabarf:event-id>
- <pentabarf:event-slug>safety_on_open_sea</pentabarf:event-slug>
- <pentabarf:title>Safety on the Open Sea</pentabarf:title>
- <pentabarf:subtitle>Safe navigation with the aid of an open sea chart.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T160000</dtstart>
- <dtend>20101229T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Safety on the Open Sea- Safe navigation with the aid of an open sea chart.</summary>
- <description>In maritime shipping accurate positioning is vital to preserve damage to life, ship, and goods. Today, we might tend to think that this problem is sufficiently solved yet because of the existence of electronic positioning systems like, most notably, the Global Positioning System (GPS) or the Russian counterpart GLONASS. This is wrong. Positions in terms of latitude and longitude just make sense together with an accurate sea chart (and of course, together with a navigator that is able to translate charting data into reality).</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4183.en.html</url>
- <location>Saal 3</location>
- <attendee>Bernhard Fischer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4138@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4138</pentabarf:event-id>
- <pentabarf:event-slug>secure_communications_below_the_hearing_threshold</pentabarf:event-slug>
- <pentabarf:title>Secure communications below the hearing threshold</pentabarf:title>
- <pentabarf:subtitle>Improved approaches for auditive steganography</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T230000</dtstart>
- <dtend>20101229T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Secure communications below the hearing threshold- Improved approaches for auditive steganography</summary>
- <description>Auditive steganography allows for various usage scenarios. In our project we focused on hidden communications in VoIP and GSM in which voice data is typically compressed and transmitted in realtime. A framework has been developed to meet these requirements, providing interfaces for robust steganographic algorithms.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4138.en.html</url>
- <location>Saal 2</location>
- <attendee>Marcus Nutzinger</attendee>
- <attendee>Rainer Poisel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4230@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4230</pentabarf:event-id>
- <pentabarf:event-slug>security_nightmares</pentabarf:event-slug>
- <pentabarf:title>Security Nightmares</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101230T171500</dtstart>
- <dtend>20101230T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>Security Nightmares</summary>
- <description>Was hat sich im letzten Jahr im Bereich IT-Sicherheit getan? Welche neuen Entwicklungen haben sich ergeben? Welche neuen Buzzwords und Trends waren zu sehen?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4230.en.html</url>
- <location>Saal 1</location>
- <attendee>Frank Rieger</attendee>
- <attendee>Ron</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4181@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4181</pentabarf:event-id>
- <pentabarf:event-slug>sip_home_gateways_under_fire</pentabarf:event-slug>
- <pentabarf:title>SIP home gateways under fire</pentabarf:title>
- <pentabarf:subtitle>Source routing attacks applied to SIP</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T143000</dtstart>
- <dtend>20101229T150000</dtend>
- <duration>00H30M00S</duration>
- <summary>SIP home gateways under fire- Source routing attacks applied to SIP</summary>
- <description>The SIP home gateway -- which combines a NAT router, a SIP proxy, and analogue phone adapters -- is the weakest link in a Voice over IP network. SIP's numerous source routing mechanisms share the well-known security weaknesses of IP source routing. The talk discusses possible exploits and countermeasures.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4181.en.html</url>
- <location>Saal 2</location>
- <attendee>Wolfgang Beck</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4060@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4060</pentabarf:event-id>
- <pentabarf:event-slug>attacking_mobile_phones</pentabarf:event-slug>
- <pentabarf:title>SMS-o-Death</pentabarf:title>
- <pentabarf:subtitle>From analyzing to attacking mobile phones on a large scale.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T171500</dtstart>
- <dtend>20101227T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>SMS-o-Death- From analyzing to attacking mobile phones on a large scale.</summary>
- <description>Smart phones, everybody has a smart phone! No! Just about 16% of all mobile phones are smart phones! Feature phones are the most common type of mobile phone in the world. Some time ago we decided to investigate the security of feature phones. In this talk we show how we analyzed feature phones for SMS security issues. We show our results and the kind of attacks that are possible with our bugs.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4060.en.html</url>
- <location>Saal 1</location>
- <attendee>Collin Mulliner</attendee>
- <attendee>Nico Golde</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4125@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4125</pentabarf:event-id>
- <pentabarf:event-slug>spinning_the_electronic_wheel</pentabarf:event-slug>
- <pentabarf:title>Spinning the electronic Wheel</pentabarf:title>
- <pentabarf:subtitle>Still the bicycles for the 21th century</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T230000</dtstart>
- <dtend>20101228T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Spinning the electronic Wheel- Still the bicycles for the 21th century</summary>
- <description>Dreieinhalb Jahre nach dem Talk '21st Century digital Bikes' auf dem Camp 2007 ist einiges in der Welt der elektrischen Fortbewegung passiert. Ende 2010 ist ein guter Zeitpunkt, den Stand der Dinge aufzurollen, die Neuigkeiten darzustellen und &#252;ber eine mehr unsch&#228;rfer als klarer werdende Zukunft der elektrischen Mobilit&#228;t zu sprechen.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4125.en.html</url>
- <location>Saal 2</location>
- <attendee>Betty</attendee>
- <attendee>Gismo C.</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4145@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4145</pentabarf:event-id>
- <pentabarf:event-slug>spoilers_human_interfaces_airplanes</pentabarf:event-slug>
- <pentabarf:title>"Spoilers, Reverse Green, DECEL!" or "What's it doing now?"</pentabarf:title>
- <pentabarf:subtitle>Thoughts on the Automation and its Human interfaces on Airplanes</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T203000</dtstart>
- <dtend>20101228T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>"Spoilers, Reverse Green, DECEL!" or "What's it doing now?"- Thoughts on the Automation and its Human interfaces on Airplanes</summary>
- <description>Getting the interfaces right to computers controlling complex and dangerous machines such as commercial airliners is crucial. I will present a successful accident analysis method and talk about interface design problems, ideas for solutions, methods for understanding causal control flow. There will be some spectacular aviation accident videos and stories of bad luck, bad design, bad decisions, and a hero that managed to turn a near-catastrophe into an accident without fatalities.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4145.en.html</url>
- <location>Saal 3</location>
- <attendee>Bernd Sieker</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4184@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4184</pentabarf:event-id>
- <pentabarf:event-slug>stanislaw_lem_weltverbesserer</pentabarf:event-slug>
- <pentabarf:title>Stanislaw Lem - Der entt&#228;uschte Weltverbesserer</pentabarf:title>
- <pentabarf:subtitle>Ein audiovisuelles Live-Feature</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101229T001500</dtstart>
- <dtend>20101229T011500</dtend>
- <duration>01H00M00S</duration>
- <summary>Stanislaw Lem - Der entt&#228;uschte Weltverbesserer- Ein audiovisuelles Live-Feature</summary>
- <description>Man kennt ihn als einen der wichtigsten Science-Fiction-Autoren des zwanzigsten Jahrhunderts. Aber Lem war mehr als das: Als Philosoph und Wissenschaftler konnte er technische Entwicklungen der Menschheit und ihre Auswirkungen sogar voraussehen. Als solcher pr&#228;gte er viele heute gel&#228;ufige Begriffe f&#252;r technische Errungenschaften, die seinerzeit noch gar nicht existierten. Seine teils utopische, teils humoristische und selbstironische Art zu schreiben, brachte ihm weltweit gro&#223;e Popularit&#228;t ein, seine B&#252;cher erreichten eine Auflage von mehr als 45 Millionen und wurden zum Teil verfilmt.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4184.en.html</url>
- <location>Saal 1</location>
- <attendee>Agata Kr&#243;likowski</attendee>
- <attendee>Constanze Kurz</attendee>
- <attendee>Ina Kwasniewski</attendee>
- <attendee>Jens-Martin Loebel</attendee>
- <attendee>Kai Kittler</attendee>
- <attendee>Marcus Richter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4097@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4097</pentabarf:event-id>
- <pentabarf:event-slug>identifizierung_von_netzwerkprotokollen</pentabarf:event-slug>
- <pentabarf:title>Techniken zur Identifizierung von Netzwerk-Protokollen</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101228T183000</dtstart>
- <dtend>20101228T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>Techniken zur Identifizierung von Netzwerk-Protokollen</summary>
- <description>Der Vortrag soll Techniken aufzeigen, mit denen man Netzwerk-Protokolle identifizieren kann, die in Layer 7 des OSI-Modells angesiedelt sind. Alle Techniken - darunter auch die Deep Packet Inspection (DPI) - werden technisch erl&#228;utert und kritisch bewertet.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4097.en.html</url>
- <location>Saal 3</location>
- <attendee>Florian Adamsky</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4055@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4055</pentabarf:event-id>
- <pentabarf:event-slug>terrorists_win_exploiting_telecommunications_data</pentabarf:event-slug>
- <pentabarf:title>Terrorists Win - Exploiting Telecommunications Data Retention?</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T123000</dtstart>
- <dtend>20101229T133000</dtend>
- <duration>01H00M00S</duration>
- <summary>Terrorists Win - Exploiting Telecommunications Data Retention?</summary>
- <description>Telecommunications data retention (TDR) has become a reality in most
-Western countries. Protagonists claim that the collection of massive
-amounts of data on the communication behavior of all individuals
-within a country would enable law enforcement agencies to exploit
-patterns in the stored data to uncover connections between suspects.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4055.en.html</url>
- <location>Saal 2</location>
- <attendee>Kay Hamacher</attendee>
- <attendee>Stefan Katzenbeisser</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4090@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4090</pentabarf:event-id>
- <pentabarf:event-slug>baseband_apocalypse</pentabarf:event-slug>
- <pentabarf:title>The Baseband Apocalypse</pentabarf:title>
- <pentabarf:subtitle>all your baseband are belong to us</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T203000</dtstart>
- <dtend>20101228T213000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Baseband Apocalypse- all your baseband are belong to us</summary>
- <description>Attack scenarios against mobile phones have thus far concentrated on the application processor. The operating systems running on these processors are getting hardened by vendors as can be seen in the case of Apple's iOS -- the current release uses data execution prevention and code signing. In contrast, the GSM stack running on the baseband processor is neglected. The advent of open-source solutions such as OpenBSC and OpenBTS for running GSM base stations is a game-changer: Malicious base stations are not within the attack model assumed by the GSMA and ETSI. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4090.en.html</url>
- <location>Saal 2</location>
- <attendee>Ralf-Philipp Weinmann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4201@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4201</pentabarf:event-id>
- <pentabarf:event-slug>the_concert_a_disconcerting_moment_for_free_culture</pentabarf:event-slug>
- <pentabarf:title>"The Concert"</pentabarf:title>
- <pentabarf:subtitle>a disconcerting moment for free culture</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T183000</dtstart>
- <dtend>20101228T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>"The Concert"- a disconcerting moment for free culture</summary>
- <description>Corey Cerovsek and Julien Quentin, accomplished musicians known worldwide for their classical recital performances, and media artist Alex Antener present something that's not quite an ordinary concert, to draw attention to the importance of the public domain in centuries of classical music tradition. It's both more &#8212; and less &#8212; than what you might expect to see and hear at a classical concert.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4201.en.html</url>
- <location>Saal 1</location>
- <attendee>Alex Antener</attendee>
- <attendee>Corey Cerovsek</attendee>
- <attendee>Julien Quentin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4174@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4174</pentabarf:event-id>
- <pentabarf:event-slug>the_hidden_nemesis</pentabarf:event-slug>
- <pentabarf:title>The Hidden Nemesis</pentabarf:title>
- <pentabarf:subtitle>Backdooring Embedded Controllers</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T230000</dtstart>
- <dtend>20101229T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Hidden Nemesis- Backdooring Embedded Controllers</summary>
- <description>Want to persistently backdoor a laptop? Backdooring the BIOS is out of the question since your target can dump and diff it? Planting hardware is out of the question as well? Shhhhhhh.. I have something for you:
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4174.en.html</url>
- <location>Saal 3</location>
- <attendee>Ralf-Philipp Weinmann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4263@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4263</pentabarf:event-id>
- <pentabarf:event-slug>resisting_excessive_government_surveillance</pentabarf:event-slug>
- <pentabarf:title>The importance of resisting Excessive Government Surveillance</pentabarf:title>
- <pentabarf:subtitle>Join me in exposing and challenging the constant violations of our right to privacy</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T230000</dtstart>
- <dtend>20101229T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>The importance of resisting Excessive Government Surveillance- Join me in exposing and challenging the constant violations of our right to privacy</summary>
- <description>My name is Nicholas Merrill and I was the plaintiff in a legal case in the US court system where I challenged the FBI&#8217;s policy of using a feature of the so-called USA PATRIOT act - what are called &#8220;National Security Letters&#8221; - to bypass the American Constitution's system of checks and balances and in violation of the United Nations Universal Declaration of Human Rights - in order to obtain protected personal information and to unmask anonymous Internet users. I spent over 6 years not able to speak to anyone (other than my lawyers) about my case - forced to lie to those closest to me due to an FBI gag order that carried a possible 10 year prison sentence for violating it. However the lawsuit resulted in the establishment of two key legal precedents and made changes that affect every Internet worker and Telephone worker in America. I would like to speak to the 27C3 audience in order to tell about my experience and to challenge (and offer my support and assistance to) those individuals who are in a position to challenge government surveillance requests to follow their consciences and do so.
-
-People who work at Internet Service Providers and Telephone companies as well as IT workers at Universities and private businesses are increasingly likely to encounter government attempts at surveillance. I would like to speak to the CCC regarding my experiences in resisting a National Security Letter and also a &#8220;Grand Jury Subpoena&#8221; as well as my experience of being gagged by the FBI for nearly 7 years - unable to speak on the subject or identify myself as the plaintiff in the NSL lawsuit.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4263.en.html</url>
- <location>Saal 1</location>
- <attendee>Nicholas Merrill</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4124@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4124</pentabarf:event-id>
- <pentabarf:event-slug>three_jobs_that_journalists_will_do_in_2050</pentabarf:event-slug>
- <pentabarf:title>Three jobs that journalists will do in 2050</pentabarf:title>
- <pentabarf:subtitle>Why future media may be more powerful (and more subversive) than ever before</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T140000</dtstart>
- <dtend>20101230T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Three jobs that journalists will do in 2050- Why future media may be more powerful (and more subversive) than ever before</summary>
- <description>Print media are dying, but what is rising up to take their place? In this presentation, I'll answer that question by describing three new kinds of jobs for journalists that do not exist in mainstream print media. These jobs are: hacker journalist, data-mining reporter, and crowd engineer. I'll be describing what these jobs entail, and current examples of organizations already employing people to do them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4124.en.html</url>
- <location>Saal 1</location>
- <attendee>Annalee Newitz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4098@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4098</pentabarf:event-id>
- <pentabarf:event-slug>tor_is_peace_software_freedom_is_slavery</pentabarf:event-slug>
- <pentabarf:title>Tor is Peace, Software Freedom is Slavery, Wikipedia is Truth</pentabarf:title>
- <pentabarf:subtitle>The political philosophy of the Internet</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101230T113000</dtstart>
- <dtend>20101230T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>Tor is Peace, Software Freedom is Slavery, Wikipedia is Truth- The political philosophy of the Internet</summary>
- <description>The Internet began as state-sponsored anarchy, but it is now the tool of first resort for dissidents and propagandists alike. The poster-child project of the Free Software Movement runs on the authority of a single person; the rest clash over the very definition of the word 'free'. A company which pictured itself as smashing Big Brother is now seen as one of the perceived secretive and authoritarian in the industry; and for another, 'Don't Be Evil' is proving to be a challenging motto to live by.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4098.en.html</url>
- <location>Saal 2</location>
- <attendee>Adam</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4234@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4234</pentabarf:event-id>
- <pentabarf:event-slug>usb_and_libusb</pentabarf:event-slug>
- <pentabarf:title>USB and libusb</pentabarf:title>
- <pentabarf:subtitle>So much more than a serial port with power</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101227T171500</dtstart>
- <dtend>20101227T181500</dtend>
- <duration>01H00M00S</duration>
- <summary>USB and libusb- So much more than a serial port with power</summary>
- <description>Learn about the benefits and limitations of Universal Serial Bus, how communication works on the bus, how and why the right (and sometimes wrong?) driver can be loaded automatically by the operating system, and find out the easiest way to add USB to your washing machine, toaster, or other favorite appliance.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4234.en.html</url>
- <location>Saal 3</location>
- <attendee>Peter Stuge</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4252@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4252</pentabarf:event-id>
- <pentabarf:event-slug>von_zensursula_ueber_censilia_zum_kindernet</pentabarf:event-slug>
- <pentabarf:title>Von Zensursula &#252;ber Censilia hin zum Kindernet</pentabarf:title>
- <pentabarf:subtitle>Jahresr&#252;ckblick rund um Internet-Sperren, Sendezeitbegrenzungen im Internet und vermeintlichen Jugendschutz</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T140000</dtstart>
- <dtend>20101227T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Von Zensursula &#252;ber Censilia hin zum Kindernet- Jahresr&#252;ckblick rund um Internet-Sperren, Sendezeitbegrenzungen im Internet und vermeintlichen Jugendschutz</summary>
- <description>Nach Zensursula kam Censilia und das Kindernet: 2010 brachte nach den hitzigen Diskussionen um Internet-Sperren und das Zugangserschwerungsgesetz einige neue Entwicklungen &#8211; und die Rundfunkkommission der L&#228;nder wollte mal wieder den Jugendschutz im Internet angehen.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4252.en.html</url>
- <location>Saal 1</location>
- <attendee>Alvar C. H. Freude</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4185@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4185</pentabarf:event-id>
- <pentabarf:event-slug>whistleblowing__licht_ins_dunkel</pentabarf:event-slug>
- <pentabarf:title>Whistleblowing</pentabarf:title>
- <pentabarf:subtitle>Licht ins Dunkel!</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101227T160000</dtstart>
- <dtend>20101227T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Whistleblowing- Licht ins Dunkel!</summary>
- <description>Whistleblowing als universelles Konzept f&#252;r mehr Transparenz &#8211; oder: &#252;ber die R&#252;ckeroberung der Dunkelr&#228;ume in Wirtschaft und Politik auch jenseits von Wikileaks.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4185.en.html</url>
- <location>Saal 1</location>
- <attendee>Johannes Ludwig</attendee>
- <attendee>Whistleblower-Netzwerk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4208@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4208</pentabarf:event-id>
- <pentabarf:event-slug>wideband_gsm_sniffing</pentabarf:event-slug>
- <pentabarf:title>Wideband GSM Sniffing</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101228T140000</dtstart>
- <dtend>20101228T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wideband GSM Sniffing</summary>
- <description>GSM is still the most widely used security technology in the world with a user base of 5 billion and a quickly growing number of critical applications. 26C3's rainbow table attack on GSM's A5/1 encryption convinced many users that GSM calls should be considered unprotected. The network operators, however, have not woken up to the threat yet. Perhaps the new capabilities to be unleashed this year &#8211; like wide-band sniffing and real-time signal processing &#8211; will wake them up.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4208.en.html</url>
- <location>Saal 1</location>
- <attendee>Karsten Nohl</attendee>
- <attendee>Sylvain Munaut</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4338@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4338</pentabarf:event-id>
- <pentabarf:event-slug>wikileaks_und_mehr</pentabarf:event-slug>
- <pentabarf:title>Wikileaks und mehr</pentabarf:title>
- <pentabarf:subtitle>Eine Whistleblowerperspektive auf Leaking-Plattformen</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20101228T113000</dtstart>
- <dtend>20101228T123000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks und mehr- Eine Whistleblowerperspektive auf Leaking-Plattformen</summary>
- <description>Als kurzfristiger Ersatz f&#252;r eine ausgefallenen Vortrag wurde die Entwicklung von Wikileaks kurz nachgezeichnet, bis hin zu den derzeit entstehenden weiteren Leaking-Plattformen. Im Mittelpunkt stand die Frage welchen Nutzen Wikileaks &amp; Co. f&#252;r Whistleblower bieten, welche Voraussetzungen f&#252;r ihre anonyme Nutzung bestehen und wie die Entwicklung weitergehen wird.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4338.en.html</url>
- <location>Saal 3</location>
- <attendee>Guido Strack</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4187@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4187</pentabarf:event-id>
- <pentabarf:event-slug>your_infrastructure_will_kill_you</pentabarf:event-slug>
- <pentabarf:title>Your Infrastructure Will Kill You</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T183000</dtstart>
- <dtend>20101229T193000</dtend>
- <duration>01H00M00S</duration>
- <summary>Your Infrastructure Will Kill You</summary>
- <description>The past century our infrastructure has seen both massive expansion and heavy centralization. When it fails, it fails big -- this is the reality of our modern interconnectedness. We live in a world of crumbling bridges and bankrupt states, and our infrastructure will kill us. The people we&#8217;re relying on to keep us safe are trying to accomplish long-term risk management with short-term thinking. So, what now? We can't opt out, but we can become more resilient, and we can start thinking about risk differently.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4187.en.html</url>
- <location>Saal 3</location>
- <attendee>Eleanor Saitta</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4209@27C3@pentabarf.org</uid>
- <pentabarf:event-id>4209</pentabarf:event-id>
- <pentabarf:event-slug>zero_sized_heap_allocations_vulnerability_analysis</pentabarf:event-slug>
- <pentabarf:title>Zero-sized heap allocations vulnerability analysis</pentabarf:title>
- <pentabarf:subtitle>Applications of theorem proving for securing the windows kernel</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20101229T214500</dtstart>
- <dtend>20101229T224500</dtend>
- <duration>01H00M00S</duration>
- <summary>Zero-sized heap allocations vulnerability analysis- Applications of theorem proving for securing the windows kernel</summary>
- <description>The dynamic memory allocator is a fundamental component of modern operating systems, and one of the most important sources of security vulnerabilities. In this presentation, we emphasize on a particular weakness of the heap management that has proven to be the root cause of many escalation of privilege bugs in the windows kernel and other critical remote vulnerabilities in user-land applications. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>http://events.ccc.de/congress/2010/Fahrplan/events/4209.en.html</url>
- <location>Saal 3</location>
- <attendee>Julien Vanegue</attendee>
-</vevent>
- </vcalendar>
-</iCalendar>
diff --git a/import/camp2011.en.xcs b/import/camp2011.en.xcs
deleted file mode 100644
index 09499086..00000000
--- a/import/camp2011.en.xcs
+++ /dev/null
@@ -1,1257 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<iCalendar xmlns:xCal="urn:ietf:params:xml:ns:xcal" xmlns:pentabarf="http://pentabarf.org">
- <vcalendar>
- <version>2.0</version>
- <prodid>-//Pentabarf//Schedule #&lt;Conference_release::Row:0x309a0916eee0&gt;//EN</prodid>
- <x-wr-caldesc>Camp 2011 Schedule Release #&lt;Conference_release::Row:0x309a0916eee0&gt;</x-wr-caldesc>
- <x-wr-calname>Camp 2011 Schedule</x-wr-calname>
-<vevent>
- <method>PUBLISH</method>
- <uid>4462@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4462</pentabarf:event-id>
- <pentabarf:event-slug>accessblocking</pentabarf:event-slug>
- <pentabarf:title>Accessblocking/Internetsperren</pentabarf:title>
- <pentabarf:subtitle>#Censilia and beyond</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T210000</dtstart>
- <dtend>20110811T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Accessblocking/Internetsperren- #Censilia and beyond</summary>
- <description>Die Debatte in Deutschland 2009 war nur der Auftakt f&#252;r die EUweite Einf&#252;hrung vom Netzsperren. Durch das Inkrafttreten des Lissabon-Vertrages verz&#246;gert, wird seit dem Kommissionsentwurf im M&#228;rz 2010 die Einf&#252;hrung von Internetsperren in der EU diskutiert.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4462.en.html</url>
- <location>Kourou</location>
- <attendee>Christian Bahls MOGiS e.V.</attendee>
- <attendee>J&#233;r&#233;mie Zimmermann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4451@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4451</pentabarf:event-id>
- <pentabarf:event-slug>a_modern_manifest_of_cyberspace</pentabarf:event-slug>
- <pentabarf:title>A modern manifest of cyberspace</pentabarf:title>
- <pentabarf:subtitle>The internet is dead, long live the internet</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T163000</dtstart>
- <dtend>20110812T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>A modern manifest of cyberspace- The internet is dead, long live the internet</summary>
- <description>The internet is increasingly falling under the control and restrictions of governments and multinational corporations. Internet connections are filtered and censored, not only in China but blatantly so in 'western' countries such as Australia and Canada. The content industry is clamping down on infringement on intellectual property and calls for ever more far-fetching and over-reaching laws to be put into effect. Meanwhile, telco's are making deals with content providers to decide how gets premium access and who gets degraded access to their networks.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4451.en.html</url>
- <location>Kourou</location>
- <attendee>gmc</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4496@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4496</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Applied Research on security of TETRA radio</pentabarf:title>
- <pentabarf:subtitle>digital radio technology beyond GSM</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T210000</dtstart>
- <dtend>20110812T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Applied Research on security of TETRA radio- digital radio technology beyond GSM</summary>
- <description>The digital professional mobile radio system TETRA is used by a wide range of users in almost all continents of the world.
-
-The OsmocomTETRA project has created a software radio receiver for the TETRA air interface, similar to what airprobe has done for GSM. Using this receiver plus associated protocol analysis tools, we are able to investigate and research the security level of real-world TETRA networks.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4496.en.html</url>
- <location>Baikonur</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4497@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4497</pentabarf:event-id>
- <pentabarf:event-slug>a_short_history_of_ipv4</pentabarf:event-slug>
- <pentabarf:title>A short history of IPv4</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T180000</dtstart>
- <dtend>20110813T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>A short history of IPv4</summary>
- <description>A few short weeks ago, APNIC's supply of IPv4 address space reached depletion. ARIN and the RIPE NCC will follow soon, most likely somewhere this year. In this talk I will discuss the history of the internet as seen from the point of view of the RIRs.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4497.en.html</url>
- <location>Baikonur</location>
- <attendee>Djinh</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4467@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4467</pentabarf:event-id>
- <pentabarf:event-slug>avionics</pentabarf:event-slug>
- <pentabarf:title>Avionics</pentabarf:title>
- <pentabarf:subtitle>Design and implementation of flight electronics</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T150000</dtstart>
- <dtend>20110813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Avionics- Design and implementation of flight electronics</summary>
- <description>Flying hardware must peform its intended function under harsh environmental conditions while fulfilling strict requirements due to boundary conditions like weight, size, and power consumption. The design must exhibit redundancy and resilience against adversary conditions and special care has to be given to thermal management and energy sources. We will discuss design rules to cope with specific problems and present a prototype system based on the multicore chip P8X32A.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4467.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4426@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4426</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Certified programming with dependent types</pentabarf:title>
- <pentabarf:subtitle>Because the future of defense is liberal application of math</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T223000</dtstart>
- <dtend>20110812T233000</dtend>
- <duration>01H00M00S</duration>
- <summary>Certified programming with dependent types- Because the future of defense is liberal application of math</summary>
- <description>Dependent types expand the concept of types in programming languages by arbitrary predicates depending on the value of the type. This lecture will introduce the concept and show how it can be used to develop formally verified code.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4426.en.html</url>
- <location>Baikonur</location>
- <attendee>Andreas Bogk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4554@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4554</pentabarf:event-id>
- <pentabarf:event-slug>closing</pentabarf:event-slug>
- <pentabarf:title>Closing Event</pentabarf:title>
- <pentabarf:subtitle>Good Bye and have a safe trip home!</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T180000</dtstart>
- <dtend>20110814T183000</dtend>
- <duration>00H30M00S</duration>
- <summary>Closing Event- Good Bye and have a safe trip home!</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4554.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4395@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4395</pentabarf:event-id>
- <pentabarf:event-slug>counselling_mischief_as_thought_crime</pentabarf:event-slug>
- <pentabarf:title>Counselling Mischief as Thought Crime</pentabarf:title>
- <pentabarf:subtitle>Social Networks, Free Speech and the Criminalization of Dissent in Canada </pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T193000</dtstart>
- <dtend>20110812T203000</dtend>
- <duration>01H00M00S</duration>
- <summary>Counselling Mischief as Thought Crime- Social Networks, Free Speech and the Criminalization of Dissent in Canada </summary>
- <description>This presentation will show how the RCMP, CSIS, CSEC and other groups worked to "secure" the 2010 Olympics, G8 and G20 by criminalising dissent, and the use of "Open Source Surveillance" to attempt to crack down on all opposition to these mega-events.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4395.en.html</url>
- <location>Kourou</location>
- <attendee>Joe</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4445@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4445</pentabarf:event-id>
- <pentabarf:event-slug>data_mining_your_city</pentabarf:event-slug>
- <pentabarf:title>Data Mining Your City</pentabarf:title>
- <pentabarf:subtitle>Early lessons in open city data from Philadelphia, PA, USA</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T150000</dtstart>
- <dtend>20110814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Data Mining Your City- Early lessons in open city data from Philadelphia, PA, USA</summary>
- <description>Philadelphia (USA) recently launched an initiative to open up tons of city records and municipal data. This talk will review some of the things people are using it for, and show how open city data is useful to many kinds of people.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4445.en.html</url>
- <location>Baikonur</location>
- <attendee>Steph Alarcon</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4389@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4389</pentabarf:event-id>
- <pentabarf:event-slug>decentralized_clustering</pentabarf:event-slug>
- <pentabarf:title>Decentralized clustering</pentabarf:title>
- <pentabarf:subtitle>Making the net - even if your local dicators hate it!</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T133000</dtstart>
- <dtend>20110812T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>Decentralized clustering- Making the net - even if your local dicators hate it!</summary>
- <description>In January 2011 the fear of all internauts became bitter truth. A whole country was kill-switched by the government. The flow of data was interrupted, communication laid waste. Not only the Internets was taken down, other means of communication were interrupted too. Cell Phone providers took down their services. So, there was no Internets in Egypt. Internauts had no chance to communicate what is happening, mothers and fathers could not send emails to theire relatives. No data was flowing. As the phone lines were working, this was the solutions: Modems.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4389.en.html</url>
- <location>Baikonur</location>
- <attendee>Herr Urbach</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4478@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4478</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Die psychologischen Grundlagen des Social Engineerings</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110811T150000</dtstart>
- <dtend>20110811T163000</dtend>
- <duration>01H30M00S</duration>
- <summary>Die psychologischen Grundlagen des Social Engineerings</summary>
- <description>Dieser Vortrag zeigt, wie Social-Engineering funktioniert und erkl&#228;rt die zugrundeliegenden Tricks und Kniffe anhand sozialpsychologischer Studien und Experimente. Au&#223;erdem werden Beispiele, Warnsignale und Gegenma&#223;nahmen vorgestellt.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4478.en.html</url>
- <location>Baikonur</location>
- <attendee>Stefan Schumacher</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4449@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4449</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>"Digitale Gesellschaft e.V." </pentabarf:title>
- <pentabarf:subtitle>Ein neuer Ansatz, um digitale B&#252;rgerrechte zu erhalten</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110811T133000</dtstart>
- <dtend>20110811T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>"Digitale Gesellschaft e.V." - Ein neuer Ansatz, um digitale B&#252;rgerrechte zu erhalten</summary>
- <description>Im April 2011 wurde mit "Digitale Gesellschaft" ein neuer Verein zum Erhalt und Ausbau von digitalen B&#252;rgerrechten pr&#228;sentiert. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4449.en.html</url>
- <location>Baikonur</location>
- <attendee>Markus Beckedahl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4438@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4438</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Dudle: Mehrseitig sichere Web 2.0-Umfragen</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110814T120000</dtstart>
- <dtend>20110814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Dudle: Mehrseitig sichere Web 2.0-Umfragen</summary>
- <description>In diesem Vortrag wird eine Web-2.0 Applikation vorgestellt mit der Umfragen durchgef&#252;hrt werden k&#246;nnen. Im Gegensatz zu anderen Anwendungen muss bei dieser dem Serveradministrator nicht vertraut werden.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4438.en.html</url>
- <location>Baikonur</location>
- <attendee>Benjamin Kellermann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4406@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4406</pentabarf:event-id>
- <pentabarf:event-slug>giving_great_workshops</pentabarf:event-slug>
- <pentabarf:title>Giving Great Workshops</pentabarf:title>
- <pentabarf:subtitle>You can create your own successful workshop</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T120000</dtstart>
- <dtend>20110811T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Giving Great Workshops- You can create your own successful workshop</summary>
- <description>Mitch Altman has taught well over 10,000 people to solder and make cool things at workshops around the world. Drawing from his experiences, this lecture will show you how to create and give your own successful workshops about what you know.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4406.en.html</url>
- <location>Kourou</location>
- <attendee>Mitch</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4504@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4504</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>GPRS Intercept</pentabarf:title>
- <pentabarf:subtitle>Wardriving phone networks</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T163000</dtstart>
- <dtend>20110812T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>GPRS Intercept- Wardriving phone networks</summary>
- <description>GPRS data networks provide the backbone for our mobile society. Just like their siblings, GSM networks, the GPRS infrastructure is often lacking an appropriate level of protection.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4504.en.html</url>
- <location>Baikonur</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4561@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4561</pentabarf:event-id>
- <pentabarf:event-slug>hacker_jeopardy</pentabarf:event-slug>
- <pentabarf:title>Hacker Jeopardy</pentabarf:title>
- <pentabarf:subtitle>Number guessing for geeks</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T000000</dtstart>
- <dtend>20110814T020000</dtend>
- <duration>02H00M00S</duration>
- <summary>Hacker Jeopardy- Number guessing for geeks</summary>
- <description>The Hacker Jeopardy is a quiz show.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4561.en.html</url>
- <location>Kourou</location>
- <attendee>Ray</attendee>
- <attendee>Stefan 'Sec' Zehl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4551@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4551</pentabarf:event-id>
- <pentabarf:event-slug>hackers_in_space</pentabarf:event-slug>
- <pentabarf:title>Hackers in Space</pentabarf:title>
- <pentabarf:subtitle>A Modest Proposal for the Next 23 Years</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T123000</dtstart>
- <dtend>20110810T130000</dtend>
- <duration>00H30M00S</duration>
- <summary>Hackers in Space- A Modest Proposal for the Next 23 Years</summary>
- <description>Four years ago, the global Hackerspace movement was kicked off at the 2007 CCCamp, having led to a worldwide, decentralised, collaborative network of hackerspaces on every continent. Fueled by the DIY and hacker spirit, we have come a long way. Now that we have the infrastructure in place, what do we do with it? In times when nation states abandon their space programs, we see the exploration of outer space as our goal for the coming decades.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4551.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4472@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4472</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Hacking DNA</pentabarf:title>
- <pentabarf:subtitle>Compiling code for living systems</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T193000</dtstart>
- <dtend>20110811T203000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking DNA- Compiling code for living systems</summary>
- <description>Genetic modification is getting cheaper and biohackers are making it more accessible. This talk outlines the state of DIYbio and institutional synthetic biology; current challenges in biological programming and why you should be hacking biology.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4472.en.html</url>
- <location>Baikonur</location>
- <attendee>Marc Juul</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4447@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4447</pentabarf:event-id>
- <pentabarf:event-slug>hybrid_rocket_engines</pentabarf:event-slug>
- <pentabarf:title>Hybrid rocket engines</pentabarf:title>
- <pentabarf:subtitle>Design and implementation of rocket engines with two-phase propellants</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T133000</dtstart>
- <dtend>20110812T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hybrid rocket engines- Design and implementation of rocket engines with two-phase propellants</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4447.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4503@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4503</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Ich und 23</pentabarf:title>
- <pentabarf:subtitle>Fingerabdr&#252;cke der DNA</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110811T180000</dtstart>
- <dtend>20110811T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>Ich und 23- Fingerabdr&#252;cke der DNA</summary>
- <description>Der Vortrag wird zun&#228;chst die Grundlagen des DNA-Fingerprinting auf unseren 23 Chromosomenpaaren zusammenfassen. Dabei wird besprochen, wie ein genetischer Fingerabdruck praktisch f&#252;r die Verwendung in der Forensik entsteht und in welcher Form die Speicherung in einer Datenbank vorgenommen wird. Darauf aufbauend werden St&#228;rken und Risiken der Technologie er&#246;rtert. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4503.en.html</url>
- <location>Baikonur</location>
- <attendee>Mirko Swillus</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4423@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4423</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Ihr kotzt mich alle an.</pentabarf:title>
- <pentabarf:subtitle>Wir haben Probleme. Und ihr merkt es nicht mal.</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110811T000000</dtstart>
- <dtend>20110811T010000</dtend>
- <duration>01H00M00S</duration>
- <summary>Ihr kotzt mich alle an.- Wir haben Probleme. Und ihr merkt es nicht mal.</summary>
- <description>Manchmal find ich ja ganz toll was so geht, aber meistens kotzt ihr mich alle ziemlich an.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4423.en.html</url>
- <location>Kourou</location>
- <attendee>Moritz Bartl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4450@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4450</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Imagine the Future of Money</pentabarf:title>
- <pentabarf:subtitle>Economic transformations, hacker culture and why we should be so lucky</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T223000</dtstart>
- <dtend>20110811T233000</dtend>
- <duration>01H00M00S</duration>
- <summary>Imagine the Future of Money- Economic transformations, hacker culture and why we should be so lucky</summary>
- <description>What comes after capitalism? We will give an overview on the development of complementary and alternative monetary systems: Which ones are there to stay, how they influence social development, how they can be improved and why hackers should really care.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4450.en.html</url>
- <location>Baikonur</location>
- <attendee>Jaromil</attendee>
- <attendee>radium</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4458@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4458</pentabarf:event-id>
- <pentabarf:event-slug>inertial_navigation</pentabarf:event-slug>
- <pentabarf:title>Inertial navigation</pentabarf:title>
- <pentabarf:subtitle>Rigid body dynamics and its application to dead reckoning</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T150000</dtstart>
- <dtend>20110811T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Inertial navigation- Rigid body dynamics and its application to dead reckoning</summary>
- <description>The motion of objects through space can be observed in everyday life and the analysis of their dynamics leads to a fundamental notion of theoretical mechanics, the rigid body. Inertial navigation is based on continuous measurement of acceleration and angular velocities and the inversion of the rigid body's equations of motion. Additionally, the modeling of noise and error propagation is essential to correctly estimate position and attitude.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4458.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4495@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4495</pentabarf:event-id>
- <pentabarf:event-slug>introduction_to_multicast_security</pentabarf:event-slug>
- <pentabarf:title>Introduction to Multicast Security</pentabarf:title>
- <pentabarf:subtitle>Beyond SSL/TLS</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T120000</dtstart>
- <dtend>20110814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Introduction to Multicast Security- Beyond SSL/TLS</summary>
- <description>For scaling real time applications multicast transport is the enabling technology. This event will present solutions for multicast security, that can be used for group conferencing and scaling data distribution services as transport layer security. Keywords: SRTP, AES-CM, Keystream, Multimedia Internet KEYing</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4495.en.html</url>
- <location>Kourou</location>
- <attendee>frehberg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4442@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4442</pentabarf:event-id>
- <pentabarf:event-slug>satellite_communications</pentabarf:event-slug>
- <pentabarf:title>Introduction to Satellite Communications</pentabarf:title>
- <pentabarf:subtitle>Installation and Operation of Satellite Systems; illustrated with Postage Stamps</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T150000</dtstart>
- <dtend>20110810T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Introduction to Satellite Communications- Installation and Operation of Satellite Systems; illustrated with Postage Stamps</summary>
- <description>We've come a long way since Sputnik; in this talk I'll cover how, why and in which orbit different satellites operate, how they get there and what must be considered when establishing connections or determining positions on earth.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4442.en.html</url>
- <location>Kourou</location>
- <attendee>Irmi Meister</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4490@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4490</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>iOS application security</pentabarf:title>
- <pentabarf:subtitle>a look at the security of 3rd party iOS applications</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T210000</dtstart>
- <dtend>20110811T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>iOS application security- a look at the security of 3rd party iOS applications</summary>
- <description>&lt;todo&gt;</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4490.en.html</url>
- <location>Baikonur</location>
- <attendee>Ilja van Sprundel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4502@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4502</pentabarf:event-id>
- <pentabarf:event-slug>is_this_the_mobile_gadget_world_we_created</pentabarf:event-slug>
- <pentabarf:title>Is this the Mobile Gadget World We Created?</pentabarf:title>
- <pentabarf:subtitle>The story of the world's first socially responsible mobile phone.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T163000</dtstart>
- <dtend>20110810T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>Is this the Mobile Gadget World We Created?- The story of the world's first socially responsible mobile phone.</summary>
- <description> The most ubiquitous device on the planet is arguably the mobile phone. Tragically, it is also a device built under some of the worst living and working conditions in the world. This is the story of a mission - To build the world's first ethical phone. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4502.en.html</url>
- <location>Baikonur</location>
- <attendee>Bicyclemark</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4412@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4412</pentabarf:event-id>
- <pentabarf:event-slug>latest_developments_around_the_milkymist_system_on_chip</pentabarf:event-slug>
- <pentabarf:title>Latest developments around the Milkymist System-on-Chip</pentabarf:title>
- <pentabarf:subtitle>A roundup of one the most advanced open hardware projects</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T193000</dtstart>
- <dtend>20110811T203000</dtend>
- <duration>01H00M00S</duration>
- <summary>Latest developments around the Milkymist System-on-Chip- A roundup of one the most advanced open hardware projects</summary>
- <description>Milkymist develops a comprehensive solution for the live synthesis of interactive visual effects. It features one of the first open source system-on-chip designs. This talk gives a roundup of what has happened during the last 1.5 year in this project.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4412.en.html</url>
- <location>Kourou</location>
- <attendee>S&#233;bastien Bourdeauducq</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4550@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4550</pentabarf:event-id>
- <pentabarf:event-slug>learning_secrets_by_watching_people</pentabarf:event-slug>
- <pentabarf:title>Learning Secrets by Watching People</pentabarf:title>
- <pentabarf:subtitle>Gesture, Expression, and Behavior Analysis for Hackers</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T133000</dtstart>
- <dtend>20110813T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>Learning Secrets by Watching People- Gesture, Expression, and Behavior Analysis for Hackers</summary>
- <description>If someone has a secret in their head, that secret may be visible in how they move, the expressions they make, and the actions they take -- even the person is trying to conceal the secret. This talk will cover ways to read those outward signs.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4550.en.html</url>
- <location>Baikonur</location>
- <attendee>spoolpin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4429@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4429</pentabarf:event-id>
- <pentabarf:event-slug>life_foods</pentabarf:event-slug>
- <pentabarf:title>Life foods</pentabarf:title>
- <pentabarf:subtitle>Benefits of use of microbial fermentations in food and beverage preparations.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T163000</dtstart>
- <dtend>20110811T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>Life foods- Benefits of use of microbial fermentations in food and beverage preparations.</summary>
- <description>The regular consumption of life foods was very important for healthy life style thousands years ago and the same applies for today. The use of today's scientific knowledge in combination with current technology will allow us to optimise these techniques.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4429.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4439@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4439</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Machine-to-machine (M2M) security</pentabarf:title>
- <pentabarf:subtitle>When physical security depends on IT security</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T163000</dtstart>
- <dtend>20110813T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>Machine-to-machine (M2M) security- When physical security depends on IT security</summary>
- <description>Today, more and more real-world things and machines are equipped with some kind of connection back home to the vendor. Such machine-to-machine (M2M) communication is often poorly secured and some day, the shit will hit the fan!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4439.en.html</url>
- <location>Baikonur</location>
- <attendee>hunz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4553@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4553</pentabarf:event-id>
- <pentabarf:event-slug>opening</pentabarf:event-slug>
- <pentabarf:title>Opening Event</pentabarf:title>
- <pentabarf:subtitle>Welcome to the Chaos Communication Camp 2011</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T120000</dtstart>
- <dtend>20110810T123000</dtend>
- <duration>00H30M00S</duration>
- <summary>Opening Event- Welcome to the Chaos Communication Camp 2011</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4553.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4552@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4552</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>OpenLeaks</pentabarf:title>
- <pentabarf:subtitle>where leaking meets engineering</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T133000</dtstart>
- <dtend>20110810T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>OpenLeaks- where leaking meets engineering</summary>
- <description>This talk will introduce the next phase of the OpenLeaks project. We will present a more detailed insight into the project and take you on a tour around the different OL subprojects. We will also announce the activities we are planning for this years camp.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4552.en.html</url>
- <location>Baikonur</location>
- <attendee>OpenLeaks</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4446@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4446</pentabarf:event-id>
- <pentabarf:event-slug>open_source_4g_radio</pentabarf:event-slug>
- <pentabarf:title>Open-source 4G radio</pentabarf:title>
- <pentabarf:subtitle>It's time to start WiMAX and LTE hacking</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T150000</dtstart>
- <dtend>20110812T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Open-source 4G radio- It's time to start WiMAX and LTE hacking</summary>
- <description>We will walk through a PHY level of mobile WiMAX and outline common and different parts with LTE. Surprisingly, the WiMAX PHY level is not as hard as you may think. We will also present our effort to create an open-source implementation of 4G radio modem.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4446.en.html</url>
- <location>Baikonur</location>
- <attendee>Alexander Chemeris</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4476@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4476</pentabarf:event-id>
- <pentabarf:event-slug>photovoltaics</pentabarf:event-slug>
- <pentabarf:title>Open source photovoltaics</pentabarf:title>
- <pentabarf:subtitle>power for off-grid devices</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T163000</dtstart>
- <dtend>20110813T170000</dtend>
- <duration>00H30M00S</duration>
- <summary>Open source photovoltaics- power for off-grid devices</summary>
- <description>Opensource-solar.org is working on open hardware power supplies for off-grid applications. The systems consist of self-build solar panels, charge controllers with microcontroller, and LiFePo4 rechargeable batteries. Green energy for your gadgets !</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4476.en.html</url>
- <location>Kourou</location>
- <attendee>Moritz von Buttlar</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4424@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4424</pentabarf:event-id>
- <pentabarf:event-slug>poker_bots</pentabarf:event-slug>
- <pentabarf:title>Poker bots</pentabarf:title>
- <pentabarf:subtitle>Developing and running autonomous pokerbots at online casinos</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T150000</dtstart>
- <dtend>20110813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Poker bots- Developing and running autonomous pokerbots at online casinos</summary>
- <description>For a few years I was part of a team that developed and ran autonomous poker playing robots on commercial Internet poker sites; playing poker with real money against real people in real time. The project failed...</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4424.en.html</url>
- <location>Baikonur</location>
- <attendee>Torbj&#246;rn Lofterud</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4461@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4461</pentabarf:event-id>
- <pentabarf:event-slug>post_privacy_und_darueber_hinaus</pentabarf:event-slug>
- <pentabarf:title>Post-Privacy und dar&#252;ber hinaus</pentabarf:title>
- <pentabarf:subtitle>Was, wenn wir alle nackt w&#228;ren?</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110813T120000</dtstart>
- <dtend>20110813T123000</dtend>
- <duration>00H30M00S</duration>
- <summary>Post-Privacy und dar&#252;ber hinaus- Was, wenn wir alle nackt w&#228;ren?</summary>
- <description>Was passiert wenn wir die Idee der Sozialen Netze weiter spinnen und von einer Gesellschaft ausgehen, in der jeder alles &#252;ber jeden wei&#223;?
-M&#246;gliche Szenarien sollen hier an Situationen und Gesellschaftlichen Strukturen erl&#228;utert werden.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4461.en.html</url>
- <location>Kourou</location>
- <attendee>Daniel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4491@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4491</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Rethinking online news</pentabarf:title>
- <pentabarf:subtitle>Journalism needs hackers to survive</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T223000</dtstart>
- <dtend>20110813T233000</dtend>
- <duration>01H00M00S</duration>
- <summary>Rethinking online news- Journalism needs hackers to survive</summary>
- <description>Journalism needs hackers to survive.
-We present our project to revolutionize online news and encourage you to start your own.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4491.en.html</url>
- <location>Baikonur</location>
- <attendee>Christopher Clay / c3o</attendee>
- <attendee>fin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4500@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4500</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Reviving smart card analysis</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T210000</dtstart>
- <dtend>20110813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Reviving smart card analysis</summary>
- <description>Smart cards chips -- originally invented as a protection for cryptographic keys -- are increasingly used to keep protocols secret. This talk challenges the chips' security measures to unlock the protocols for public analysis.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4500.en.html</url>
- <location>Baikonur</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4436@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4436</pentabarf:event-id>
- <pentabarf:event-slug>rocket_propulsion</pentabarf:event-slug>
- <pentabarf:title>Rocket propulsion basics</pentabarf:title>
- <pentabarf:subtitle>An introduction to rocket engines and their application for space travel</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T133000</dtstart>
- <dtend>20110810T150000</dtend>
- <duration>01H30M00S</duration>
- <summary>Rocket propulsion basics- An introduction to rocket engines and their application for space travel</summary>
- <description>We will discuss the basic principles of thermochemical engines and their application for rocket propulsion. The three main types of chemical rocket engines, i.e. solid, liquid, and hybrid, will be presented and compared.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4436.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4399@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4399</pentabarf:event-id>
- <pentabarf:event-slug>runtine_reconfigurable_processors</pentabarf:event-slug>
- <pentabarf:title>Runtime Reconfigurable Processors</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T120000</dtstart>
- <dtend>20110812T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Runtime Reconfigurable Processors</summary>
- <description>The talk will give the audience an introduction to the world of runtime reconfigurable processors.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4399.en.html</url>
- <location>Baikonur</location>
- <attendee>Dominik Meyer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4440@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4440</pentabarf:event-id>
- <pentabarf:event-slug>solid_rocket_engines</pentabarf:event-slug>
- <pentabarf:title>Solid rocket engines</pentabarf:title>
- <pentabarf:subtitle>Design and implementation of engines with solid propellant</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T133000</dtstart>
- <dtend>20110811T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>Solid rocket engines- Design and implementation of engines with solid propellant</summary>
- <description>We will present the design and construction of a solid rocket motor and discuss results from recent test campaigns.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4440.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4411@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4411</pentabarf:event-id>
- <pentabarf:event-slug>space_debris</pentabarf:event-slug>
- <pentabarf:title>Space Debris</pentabarf:title>
- <pentabarf:subtitle>Simulation of orbital debris and its impacts on space travel</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T150000</dtstart>
- <dtend>20110814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Space Debris- Simulation of orbital debris and its impacts on space travel</summary>
- <description>This talk is about different sources of space debris and how they are a problem for current and future space travel. I'll introduce some of the computational models that are used to simulate space debris objects and some ideas to prevent them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4411.en.html</url>
- <location>Kourou</location>
- <attendee>Marek M&#246;ckel</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4493@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4493</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Space Federation</pentabarf:title>
- <pentabarf:subtitle>Linking and Launching Earth-Based Hacker Spaces</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T180000</dtstart>
- <dtend>20110810T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>Space Federation- Linking and Launching Earth-Based Hacker Spaces</summary>
- <description>Our mission is to provide financial and organizational support to open communities in shared physical spaces who use innovative methods and technology in hands-on education. We'll speak to the global community about the progress in America.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4493.en.html</url>
- <location>Kourou</location>
- <attendee>willowbl00</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4549@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4549</pentabarf:event-id>
- <pentabarf:event-slug>sport_fuer_nerds</pentabarf:event-slug>
- <pentabarf:title>Sport f&#252;r Nerds</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110812T120000</dtstart>
- <dtend>20110812T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Sport f&#252;r Nerds</summary>
- <description>Viele von uns sitzen l&#228;nger vorm Rechner als es ihnen gut tut, irgendwann geht dann die Suche nach einer geeigneten Sportart los &#8230;
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4549.en.html</url>
- <location>Kourou</location>
- <attendee>Shorty</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4492@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4492</pentabarf:event-id>
- <pentabarf:event-slug>stalker</pentabarf:event-slug>
- <pentabarf:title>Stalker - Die strahlende Reise der Gebr&#252;der Strugazki</pentabarf:title>
- <pentabarf:subtitle>Ein audiovisuelles Live-H&#246;rspiel</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110813T000000</dtstart>
- <dtend>20110813T010000</dtend>
- <duration>01H00M00S</duration>
- <summary>Stalker - Die strahlende Reise der Gebr&#252;der Strugazki- Ein audiovisuelles Live-H&#246;rspiel</summary>
- <description>Die atomar verstrahlten Ruinen eines ehemaligen Kernkraftwerkes sind Symbole f&#252;r das bevorstehende Ende der Zivilisation, aber gleichzeitig die Wunschmaschine, die alle Sehns&#252;chte stillen kann. Dieser Ort ist nicht Fukushima und auch nicht Tschernobyl, sondern der Zielort der Protagonisten im Roman &#8222;Picknick am Wegesrand&#8220; der russischen Autorenbr&#252;der Arkadi und Boris Strugazki. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4492.en.html</url>
- <location>Kourou</location>
- <attendee>Agata Kr&#243;likowski</attendee>
- <attendee>Ina Kwasniewski</attendee>
- <attendee>Jens-Martin Loebel</attendee>
- <attendee>Kai Kittler</attendee>
- <attendee>Marcus Mews</attendee>
- <attendee>Marcus Richter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4505@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4505</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Strahlung im Weltall</pentabarf:title>
- <pentabarf:subtitle>Hell yeah, it's radiation science!</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110812T150000</dtstart>
- <dtend>20110812T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Strahlung im Weltall- Hell yeah, it's radiation science!</summary>
- <description>Wer eine Mission zum Mond plant, muss sich &#252;ber das, was die Umgebung dort bereith&#228;lt, Gedanken machen. Neben Temperaturen von -180 bis +120&#176; C ist Strahlung eine der gr&#246;&#223;ten Herausforderungen bei einer derartigen Mission. So genannte Single Event Upsets (SEU) k&#246;nnen in einer Speicherzelle Datenbits flippen. Mit diesen umgekippten Bits muss man dann zurechtkommen. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4505.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4421@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4421</pentabarf:event-id>
- <pentabarf:event-slug>strong_encryption_of_credit_card_information</pentabarf:event-slug>
- <pentabarf:title>Strong encryption of credit card information</pentabarf:title>
- <pentabarf:subtitle>Attacks on common failures when encrypting credit card information</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T150000</dtstart>
- <dtend>20110810T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Strong encryption of credit card information- Attacks on common failures when encrypting credit card information</summary>
- <description>The PCI DSS standard require strong cryptography or secure hashing as ways to protect cardholder information. But one important factor is missing; detailed instructions for how to correctly apply cryptography to credit card numbers.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4421.en.html</url>
- <location>Baikonur</location>
- <attendee>Torbj&#246;rn Lofterud</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4453@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4453</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Stuff you don't see - every day</pentabarf:title>
- <pentabarf:subtitle>GNU Radio Internals - how to use the Framework</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T180000</dtstart>
- <dtend>20110810T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>Stuff you don't see - every day- GNU Radio Internals - how to use the Framework</summary>
- <description>Software Defined Radio defines a new approach to analyze signals with software. With the flexibility of software SDR literally opened a new spectrum of hacking.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4453.en.html</url>
- <location>Baikonur</location>
- <attendee>Marius Ciepluch</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4466@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4466</pentabarf:event-id>
- <pentabarf:event-slug>rocket_telemetry</pentabarf:event-slug>
- <pentabarf:title>Telemetry </pentabarf:title>
- <pentabarf:subtitle>Real-time communication during rocket flight</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T133000</dtstart>
- <dtend>20110813T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>Telemetry - Real-time communication during rocket flight</summary>
- <description>Retrieval of information is essential for every experiment, especially involving rockets. The use of electromagnetic waves is the natural choice for communication with a rocket and sometimes the only means to retrieve flight hardware afterwards.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4466.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4402@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4402</pentabarf:event-id>
- <pentabarf:event-slug>tempo_phythm_echo</pentabarf:event-slug>
- <pentabarf:title>Tempo/Rhythm/Echo extraction from Music</pentabarf:title>
- <pentabarf:subtitle></pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110811T223000</dtstart>
- <dtend>20110811T233000</dtend>
- <duration>01H00M00S</duration>
- <summary>Tempo/Rhythm/Echo extraction from Music</summary>
- <description>This talk explains how the tempo of music can accurately be measured and how it can be used afterwards to extract rhythmical information and composition properties. These can further be used to find similar songs, generate synthetic rhythms and mix music.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4402.en.html</url>
- <location>Kourou</location>
- <attendee>Werner Van Belle</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4455@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4455</pentabarf:event-id>
- <pentabarf:event-slug>arguna</pentabarf:event-slug>
- <pentabarf:title>The "Arguna" rocket family</pentabarf:title>
- <pentabarf:subtitle>An overview of our recent sounding rocket campaigns</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110814T133000</dtstart>
- <dtend>20110814T143000</dtend>
- <duration>01H00M00S</duration>
- <summary>The "Arguna" rocket family- An overview of our recent sounding rocket campaigns</summary>
- <description>The "Arguna" rocket family consist of four one-stage sounding rockets that can reach altitudes up to 10km. We will present the designs of these rockets and discuss the performed flights and results from avionics experiments.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4455.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4427@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4427</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>The blackbox in your phone</pentabarf:title>
- <pentabarf:subtitle>Some details about SIM cards</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T210000</dtstart>
- <dtend>20110810T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>The blackbox in your phone- Some details about SIM cards</summary>
- <description>This talk sheds some light on a cellphone-component, that's inevitable, virtually unclonable and as closed as it gets: the SIM. The SIM can do a lot more than just user-authentication nowadays: the SIM Application Toolkit gives it control over your phone</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4427.en.html</url>
- <location>Baikonur</location>
- <attendee>hunz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4428@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4428</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>The Joy of Intellectual Vampirism</pentabarf:title>
- <pentabarf:subtitle>Mindfucking with Shared Information</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T193000</dtstart>
- <dtend>20110813T203000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Joy of Intellectual Vampirism- Mindfucking with Shared Information</summary>
- <description>What makes us gravitate towards other people? In Intellectual Vampires it is the craving for fresh ideas, and in Intellectual Fangbangers it is the joy of sharing them. A talk on the fine art of communication, channels, contexts, and language.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4428.en.html</url>
- <location>Kourou</location>
- <attendee>Christiane Ruetten</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4443@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4443</pentabarf:event-id>
- <pentabarf:event-slug>theres_gold_in_them_circuit_boards</pentabarf:event-slug>
- <pentabarf:title>There's Gold in Them Circuit Boards</pentabarf:title>
- <pentabarf:subtitle>Why E-Waste Recycling Is Smart and How To Make It Smarter</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110813T180000</dtstart>
- <dtend>20110813T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>There's Gold in Them Circuit Boards- Why E-Waste Recycling Is Smart and How To Make It Smarter</summary>
- <description>Everything we do as technologists depends on the critical minerals from which our devices are made. Recycling junk electronics is no longer just the right thing to do, it's the smart thing to do.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4443.en.html</url>
- <location>Kourou</location>
- <attendee>Steph Alarcon</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4459@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4459</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Transition Telecom</pentabarf:title>
- <pentabarf:subtitle>Telecommunications and networking during energy descent</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110810T193000</dtstart>
- <dtend>20110810T203000</dtend>
- <duration>01H00M00S</duration>
- <summary>Transition Telecom- Telecommunications and networking during energy descent</summary>
- <description>We'll need to come to grips with the challenges that declining oil production and increasing temperatures present. This talk explores positive future scenarios for the world of networking and communications past the great global energy free-for-all.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4459.en.html</url>
- <location>Baikonur</location>
- <attendee>Frank Rieger</attendee>
- <attendee>Rop Gonggrijp</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4471@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4471</pentabarf:event-id>
- <pentabarf:event-slug>who_is_snitching_my_milk</pentabarf:event-slug>
- <pentabarf:title>Who's snitching my milk?</pentabarf:title>
- <pentabarf:subtitle>Nonlinear dynamics/analysis of vanishing bovine products in an office environment.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20110812T000000</dtstart>
- <dtend>20110812T003000</dtend>
- <duration>00H30M00S</duration>
- <summary>Who's snitching my milk?- Nonlinear dynamics/analysis of vanishing bovine products in an office environment.</summary>
- <description>Nowadays many office environments offer small tea kitchens for their employees. From subjective experiences there seems to be a milk drain in these environments. However, fundamentel research is still missing.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4471.en.html</url>
- <location>Kourou</location>
- <attendee>Andr&#233; Franz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4506@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4506</pentabarf:event-id>
- <pentabarf:event-slug>mondmission</pentabarf:event-slug>
- <pentabarf:title>Wie finanziere ich eine Mondmission? (Funtalk)</pentabarf:title>
- <pentabarf:subtitle>Von W&#252;rstchen verkaufen bis Ballonfl&#252;ge - ein Erfahrungsbericht.</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110814T163000</dtstart>
- <dtend>20110814T173000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wie finanziere ich eine Mondmission? (Funtalk)- Von W&#252;rstchen verkaufen bis Ballonfl&#252;ge - ein Erfahrungsbericht.</summary>
- <description></description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4506.en.html</url>
- <location>Kourou</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>4435@Camp 2011@pentabarf.org</uid>
- <pentabarf:event-id>4435</pentabarf:event-id>
- <pentabarf:event-slug></pentabarf:event-slug>
- <pentabarf:title>Windkraftanlagen</pentabarf:title>
- <pentabarf:subtitle>Aufbau, Betrieb, Probleme</pentabarf:subtitle>
- <pentabarf:language>German</pentabarf:language>
- <pentabarf:language-code>de</pentabarf:language-code>
- <dtstart>20110812T180000</dtstart>
- <dtend>20110812T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>Windkraftanlagen- Aufbau, Betrieb, Probleme</summary>
- <description>Windenergie ist momentan noch interessanter geworden, aber kaum jemand wei&#223; &#252;ber die eingesetzte Technik Bescheid.
-Daher soll sowohl der Aufbau als auch der Betrieb erkl&#228;rt werden. Zus&#228;tzlich wird auf potentielle Probleme eingegangen.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://events.ccc.de/camp/2011/Fahrplan/events/4435.en.html</url>
- <location>Kourou</location>
- <attendee>luky</attendee>
-</vevent>
- </vcalendar>
-</iCalendar>
diff --git a/import/har2009_sample.xcs b/import/har2009_sample.xcs
deleted file mode 100644
index c192c046..00000000
--- a/import/har2009_sample.xcs
+++ /dev/null
@@ -1,5451 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<iCalendar xmlns:pentabarf="http://pentabarf.org" xmlns:xCal="urn:ietf:params:xml:ns:xcal">
- <vcalendar>
- <version>2.0</version>
- <prodid>-//Pentabarf//Schedule #&lt;Conference_release::Row:0x364a6f5f8e90&gt;//EN</prodid>
- <x-wr-caldesc>HAR2009 Schedule Release #&lt;Conference_release::Row:0x364a6f5f67f8&gt;</x-wr-caldesc>
- <x-wr-calname>HAR2009 Schedule</x-wr-calname>
-<vevent>
- <method>PUBLISH</method>
- <uid>45@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>45</pentabarf:event-id>
- <pentabarf:event-slug>advanced_mysql_exploitation</pentabarf:event-slug>
- <pentabarf:title>Advanced MySQL Exploitation</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Advanced MySQL Exploitation</summary>
- <description>This talk focuses on how MySQL SQL injection vulnerabilites can be used to gain remote code execution on the LAMP and WAMP environments.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/45.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Muhaimin Dzulfakar</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>45@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>45</pentabarf:event-id>
- <pentabarf:event-slug>advanced_mysql_exploitation</pentabarf:event-slug>
- <pentabarf:title>Advanced MySQL Exploitation</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Advanced MySQL Exploitation</summary>
- <description>This talk focuses on how MySQL SQL injection vulnerabilites can be used to gain remote code execution on the LAMP and WAMP environments.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/45.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Muhaimin Dzulfakar</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>104@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>104</pentabarf:event-id>
- <pentabarf:event-slug>surviving_the_corporate_world</pentabarf:event-slug>
- <pentabarf:title>A hackers guide to surviving in the corporate world</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>A hackers guide to surviving in the corporate world</summary>
- <description>A hacker’s guide to surviving in the corporate world.
-
-Large organizations, be it enterprises or government, are also large users of information technology. For people interested in the application of information technology, especially those interested in the risks that information technology brings, understanding the way large organizations work can therefore be very relevant.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/104.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter van Eijk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>104@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>104</pentabarf:event-id>
- <pentabarf:event-slug>surviving_the_corporate_world</pentabarf:event-slug>
- <pentabarf:title>A hackers guide to surviving in the corporate world</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>A hackers guide to surviving in the corporate world</summary>
- <description>A hacker’s guide to surviving in the corporate world.
-
-Large organizations, be it enterprises or government, are also large users of information technology. For people interested in the application of information technology, especially those interested in the risks that information technology brings, understanding the way large organizations work can therefore be very relevant.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/104.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter van Eijk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>186@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>186</pentabarf:event-id>
- <pentabarf:event-slug>airprobe</pentabarf:event-slug>
- <pentabarf:title>Airprobe</pentabarf:title>
- <pentabarf:subtitle>Monitoring GSM traffic with USRP</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Airprobe- Monitoring GSM traffic with USRP</summary>
- <description>The GNU Radio project, and the associated Universal Software Radio Peripheral hardware, has for the first time put access to wideband radio reception and digital signal processing into the hands of the average hacker. The airprobe project focuses on a software stack that provides GSM mobile phone reception and decoding. This talk gives a gentle introdoction into GSM, the airprobe software and its practical usage.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/186.en.html</url>
- <location>Monty Hall</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>186@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>186</pentabarf:event-id>
- <pentabarf:event-slug>airprobe</pentabarf:event-slug>
- <pentabarf:title>Airprobe</pentabarf:title>
- <pentabarf:subtitle>Monitoring GSM traffic with USRP</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Airprobe- Monitoring GSM traffic with USRP</summary>
- <description>The GNU Radio project, and the associated Universal Software Radio Peripheral hardware, has for the first time put access to wideband radio reception and digital signal processing into the hands of the average hacker. The airprobe project focuses on a software stack that provides GSM mobile phone reception and decoding. This talk gives a gentle introdoction into GSM, the airprobe software and its practical usage.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/186.en.html</url>
- <location>Monty Hall</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>41@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>41</pentabarf:event-id>
- <pentabarf:event-slug>attacking_backbone_tech</pentabarf:event-slug>
- <pentabarf:title>All Your Packets Are Belong to Us</pentabarf:title>
- <pentabarf:subtitle>Attacking Backbone Technologies</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>All Your Packets Are Belong to Us- Attacking Backbone Technologies</summary>
- <description>The year 2008 has seen some severe attacks on infrastructure protocols (SNMP, DNS, BGP). We will continue down that road and discuss potential and real vulnerabilities in backbone technologies used in today's carrier space (e.g. MPLS, Carrier Ethernet, QinQ and the like). The talk includes a number of demos (like cracking BGP MD5 keys, redirecting MPLS traffic on a site level and some Carrier Ethernet stuff) all of which will be performed with a new tool kit made available at the con. It's about making the theoretical practical, once more!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/41.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Daniel Mende</attendee>
- <attendee>Simon Rich</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>41@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>41</pentabarf:event-id>
- <pentabarf:event-slug>attacking_backbone_tech</pentabarf:event-slug>
- <pentabarf:title>All Your Packets Are Belong to Us</pentabarf:title>
- <pentabarf:subtitle>Attacking Backbone Technologies</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>All Your Packets Are Belong to Us- Attacking Backbone Technologies</summary>
- <description>The year 2008 has seen some severe attacks on infrastructure protocols (SNMP, DNS, BGP). We will continue down that road and discuss potential and real vulnerabilities in backbone technologies used in today's carrier space (e.g. MPLS, Carrier Ethernet, QinQ and the like). The talk includes a number of demos (like cracking BGP MD5 keys, redirecting MPLS traffic on a site level and some Carrier Ethernet stuff) all of which will be performed with a new tool kit made available at the con. It's about making the theoretical practical, once more!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/41.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Daniel Mende</attendee>
- <attendee>Simon Rich</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>15@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>15</pentabarf:event-id>
- <pentabarf:event-slug>analog_circuit_design</pentabarf:event-slug>
- <pentabarf:title>Analog circuit design</pentabarf:title>
- <pentabarf:subtitle>How to create analog electronic circuits </pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Analog circuit design- How to create analog electronic circuits </summary>
- <description>Digital electronics is ubiquitous in our lives. While it is easy to design digital systems, it seems harder to create circuits amplifying or transforming analog signals.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/15.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rüdiger Ranft</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>15@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>15</pentabarf:event-id>
- <pentabarf:event-slug>analog_circuit_design</pentabarf:event-slug>
- <pentabarf:title>Analog circuit design</pentabarf:title>
- <pentabarf:subtitle>How to create analog electronic circuits </pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Analog circuit design- How to create analog electronic circuits </summary>
- <description>Digital electronics is ubiquitous in our lives. While it is easy to design digital systems, it seems harder to create circuits amplifying or transforming analog signals.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/15.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rüdiger Ranft</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>122@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>122</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>An empirical study of division of labour in free software development</pentabarf:title>
- <pentabarf:subtitle>the case of the FreeBSD project</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>An empirical study of division of labour in free software development- the case of the FreeBSD project</summary>
- <description>For an overview of the presentation, see the slides attached. (The slides reflect the state of our research two months ago; but as the research is still in progress, the slides we intend to present at HAR will be further updated).</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/122.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>George Dafermos</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>122@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>122</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>An empirical study of division of labour in free software development</pentabarf:title>
- <pentabarf:subtitle>the case of the FreeBSD project</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>An empirical study of division of labour in free software development- the case of the FreeBSD project</summary>
- <description>For an overview of the presentation, see the slides attached. (The slides reflect the state of our research two months ago; but as the research is still in progress, the slides we intend to present at HAR will be further updated).</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/122.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>George Dafermos</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>82@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>82</pentabarf:event-id>
- <pentabarf:event-slug>anonymous_vs_scientology</pentabarf:event-slug>
- <pentabarf:title>Anonymous Vs. Scientology</pentabarf:title>
- <pentabarf:subtitle>a case study in 2.0 hacktivism &amp; how it could help future projects</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T190000</dtstart>
- <dtend>20090814T200000</dtend>
- <duration>01H00M00S</duration>
- <summary>Anonymous Vs. Scientology- a case study in 2.0 hacktivism &amp; how it could help future projects</summary>
- <description>About Social organising via Web 2.0</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/82.en.html</url>
- <location>Monty Hall</location>
- <attendee>Henk de Vries</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>82@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>82</pentabarf:event-id>
- <pentabarf:event-slug>anonymous_vs_scientology</pentabarf:event-slug>
- <pentabarf:title>Anonymous Vs. Scientology</pentabarf:title>
- <pentabarf:subtitle>a case study in 2.0 hacktivism &amp; how it could help future projects</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T190000</dtstart>
- <dtend>20090814T200000</dtend>
- <duration>01H00M00S</duration>
- <summary>Anonymous Vs. Scientology- a case study in 2.0 hacktivism &amp; how it could help future projects</summary>
- <description>About Social organising via Web 2.0</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/82.en.html</url>
- <location>Monty Hall</location>
- <attendee>Henk de Vries</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>49@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>49</pentabarf:event-id>
- <pentabarf:event-slug>anti_counterfeiting_agreement</pentabarf:event-slug>
- <pentabarf:title>Anti-Counterfeiting Trade Agreement</pentabarf:title>
- <pentabarf:subtitle>New legislation for a billion people, made behind closed doors</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Anti-Counterfeiting Trade Agreement- New legislation for a billion people, made behind closed doors</summary>
- <description>"Stringent intellectual property rules could hamper the spread of technology needed to fight climate change."
- Paul David, professor of economics at Stanford University, California
-
-"If Hollywood could order intellectual property laws for Christmas, what would they look like? This is pretty close."
- David Fewer, staff counsel at the Canadian Internet Policy and Public Interest Clinic, University of Ottawa, after looking at leaked ACTA documents.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/49.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ante Wessels</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>49@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>49</pentabarf:event-id>
- <pentabarf:event-slug>anti_counterfeiting_agreement</pentabarf:event-slug>
- <pentabarf:title>Anti-Counterfeiting Trade Agreement</pentabarf:title>
- <pentabarf:subtitle>New legislation for a billion people, made behind closed doors</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Anti-Counterfeiting Trade Agreement- New legislation for a billion people, made behind closed doors</summary>
- <description>"Stringent intellectual property rules could hamper the spread of technology needed to fight climate change."
- Paul David, professor of economics at Stanford University, California
-
-"If Hollywood could order intellectual property laws for Christmas, what would they look like? This is pretty close."
- David Fewer, staff counsel at the Canadian Internet Policy and Public Interest Clinic, University of Ottawa, after looking at leaked ACTA documents.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/49.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ante Wessels</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>211@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>211</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>A workshop on the ethics of piracy</pentabarf:title>
- <pentabarf:subtitle>(debating the arguments in the earlier talk)</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>A workshop on the ethics of piracy- (debating the arguments in the earlier talk)</summary>
- <description>Lots of people had questions, comments and counterarguments to the "Complex Ethics of Piracy" talk. Someone suggested we should have a Workshop to debate them further.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/211.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>211@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>211</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>A workshop on the ethics of piracy</pentabarf:title>
- <pentabarf:subtitle>(debating the arguments in the earlier talk)</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>A workshop on the ethics of piracy- (debating the arguments in the earlier talk)</summary>
- <description>Lots of people had questions, comments and counterarguments to the "Complex Ethics of Piracy" talk. Someone suggested we should have a Workshop to debate them further.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/211.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>130@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>130</pentabarf:event-id>
- <pentabarf:event-slug>beautifulism_delight</pentabarf:event-slug>
- <pentabarf:title>Beautifulism &amp; [de]light</pentabarf:title>
- <pentabarf:subtitle>Next generation of BlinkenArea projects</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Beautifulism &amp; [de]light- Next generation of BlinkenArea projects</summary>
- <description>After celebrating the 5th anniversary of the founding of the BlinkenArea last year, it is now time to start for the future of researching and operating flashlights. The new meme of beautifulism &amp; [de]light will lead us to the next generation of BlinkenArea projects.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/130.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Juliane Pilster</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>130@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>130</pentabarf:event-id>
- <pentabarf:event-slug>beautifulism_delight</pentabarf:event-slug>
- <pentabarf:title>Beautifulism &amp; [de]light</pentabarf:title>
- <pentabarf:subtitle>Next generation of BlinkenArea projects</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Beautifulism &amp; [de]light- Next generation of BlinkenArea projects</summary>
- <description>After celebrating the 5th anniversary of the founding of the BlinkenArea last year, it is now time to start for the future of researching and operating flashlights. The new meme of beautifulism &amp; [de]light will lead us to the next generation of BlinkenArea projects.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/130.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Juliane Pilster</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>181@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>181</pentabarf:event-id>
- <pentabarf:event-slug>overheid20</pentabarf:event-slug>
- <pentabarf:title>Becoming government 2.0</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Becoming government 2.0</summary>
- <description>Internet and web 2.0 are bringing a fundamental change to how society works and how organisations work. This means government will have to change as well. These changes will not only affect the relationship between citizens and government, but also the internal structure of governmental organizations and the way civil servants work. Quite a challenge. How is this change coming about? And what can be done to accelerate the process? What can you do? Davied van Berlo, founder of the Civil Servant Network (www.ambtenaar20.nl), will share his views and experiences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/181.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Davied van Berlo</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>181@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>181</pentabarf:event-id>
- <pentabarf:event-slug>overheid20</pentabarf:event-slug>
- <pentabarf:title>Becoming government 2.0</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Becoming government 2.0</summary>
- <description>Internet and web 2.0 are bringing a fundamental change to how society works and how organisations work. This means government will have to change as well. These changes will not only affect the relationship between citizens and government, but also the internal structure of governmental organizations and the way civil servants work. Quite a challenge. How is this change coming about? And what can be done to accelerate the process? What can you do? Davied van Berlo, founder of the Civil Servant Network (www.ambtenaar20.nl), will share his views and experiences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/181.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Davied van Berlo</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>200@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>200</pentabarf:event-id>
- <pentabarf:event-slug>yroworkshop2</pentabarf:event-slug>
- <pentabarf:title>Bits of Freedom online freedom activism workshop</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Bits of Freedom online freedom activism workshop</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/200.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>200@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>200</pentabarf:event-id>
- <pentabarf:event-slug>yroworkshop2</pentabarf:event-slug>
- <pentabarf:title>Bits of Freedom online freedom activism workshop</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Bits of Freedom online freedom activism workshop</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/200.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>199@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>199</pentabarf:event-id>
- <pentabarf:event-slug>yroworkshop1</pentabarf:event-slug>
- <pentabarf:title>Bits of Freedom privacy activism workshop</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Bits of Freedom privacy activism workshop</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/199.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>199@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>199</pentabarf:event-id>
- <pentabarf:event-slug>yroworkshop1</pentabarf:event-slug>
- <pentabarf:title>Bits of Freedom privacy activism workshop</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Bits of Freedom privacy activism workshop</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/199.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>131@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>131</pentabarf:event-id>
- <pentabarf:event-slug>blinkenmovie</pentabarf:event-slug>
- <pentabarf:title>BlinkenArea - Movie Contest</pentabarf:title>
- <pentabarf:subtitle>beautifulism &amp; [de]light</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>03H00M00S</duration>
- <summary>BlinkenArea - Movie Contest- beautifulism &amp; [de]light</summary>
- <description>The BlinkenArea would like to organise a movie contest for HARCade (BlinkenArea project TroiCade, which is showcased somewhere at HAR area). Everybody can create movies shown on the project during the event by using a special software, provided on BlinkenArea website. A jury will be assembled to choose the best movie and to award a prize at the end of HAR. For further information have a look on https://wiki.blinkenarea.org/index.php/HAR2009 from time to time!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/131.en.html</url>
- <location>HARcade (valkennest)</location>
- <attendee>Juliane Pilster</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>131@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>131</pentabarf:event-id>
- <pentabarf:event-slug>blinkenmovie</pentabarf:event-slug>
- <pentabarf:title>BlinkenArea - Movie Contest</pentabarf:title>
- <pentabarf:subtitle>beautifulism &amp; [de]light</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>03H00M00S</duration>
- <summary>BlinkenArea - Movie Contest- beautifulism &amp; [de]light</summary>
- <description>The BlinkenArea would like to organise a movie contest for HARCade (BlinkenArea project TroiCade, which is showcased somewhere at HAR area). Everybody can create movies shown on the project during the event by using a special software, provided on BlinkenArea website. A jury will be assembled to choose the best movie and to award a prize at the end of HAR. For further information have a look on https://wiki.blinkenarea.org/index.php/HAR2009 from time to time!</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/131.en.html</url>
- <location>HARcade (valkennest)</location>
- <attendee>Juliane Pilster</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>10@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>10</pentabarf:event-id>
- <pentabarf:event-slug>blinkensisters</pentabarf:event-slug>
- <pentabarf:title>BlinkenSisters Jump'n'Run</pentabarf:title>
- <pentabarf:subtitle>Open Source Retro-Gaming</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>BlinkenSisters Jump'n'Run- Open Source Retro-Gaming</summary>
- <description>There was a time when 2D Jump'n'Run games where state-of-the-art and you'd spend the whole weekend trying to get past the last boss monster. That time has long since gone...
-
-...or has it?
-
-"BlinkenSisters - Hunt for the Lost Pixels" is an extensible open source Jump'n'Run game that brings back the 80's.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/10.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rene "cavac" Schickbauer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>10@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>10</pentabarf:event-id>
- <pentabarf:event-slug>blinkensisters</pentabarf:event-slug>
- <pentabarf:title>BlinkenSisters Jump'n'Run</pentabarf:title>
- <pentabarf:subtitle>Open Source Retro-Gaming</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>BlinkenSisters Jump'n'Run- Open Source Retro-Gaming</summary>
- <description>There was a time when 2D Jump'n'Run games where state-of-the-art and you'd spend the whole weekend trying to get past the last boss monster. That time has long since gone...
-
-...or has it?
-
-"BlinkenSisters - Hunt for the Lost Pixels" is an extensible open source Jump'n'Run game that brings back the 80's.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/10.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rene "cavac" Schickbauer</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>135@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>135</pentabarf:event-id>
- <pentabarf:event-slug>breaking_hitag2</pentabarf:event-slug>
- <pentabarf:title>Breaking Hitag2</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Breaking Hitag2</summary>
- <description>Hitag2 is a low-frequency RFID system operating on a 120kHz using a proprietary 48-bit stream cipher which is only slightly harder to attack than the much-publicized Mifare Crypto-1 cipher. Hitag2 (with or without encryption) is mostly used for building access control or car immobilizers.
-
-The low operating frequency and low data rate (2, 4 or 8 kbit/s) makes building sniffers, replayers and emulators especially easy. The maximum frequency of the data signal is in the audio range, so a normal sound card can be used as an A/D and D/A converter, using a very cheap diode detector radio for reception and simple load modulation circuit for transmission.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/135.en.html</url>
- <location>Monty Hall</location>
- <attendee>Henryk Plötz</attendee>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>135@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>135</pentabarf:event-id>
- <pentabarf:event-slug>breaking_hitag2</pentabarf:event-slug>
- <pentabarf:title>Breaking Hitag2</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Breaking Hitag2</summary>
- <description>Hitag2 is a low-frequency RFID system operating on a 120kHz using a proprietary 48-bit stream cipher which is only slightly harder to attack than the much-publicized Mifare Crypto-1 cipher. Hitag2 (with or without encryption) is mostly used for building access control or car immobilizers.
-
-The low operating frequency and low data rate (2, 4 or 8 kbit/s) makes building sniffers, replayers and emulators especially easy. The maximum frequency of the data signal is in the audio range, so a normal sound card can be used as an A/D and D/A converter, using a very cheap diode detector radio for reception and simple load modulation circuit for transmission.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/135.en.html</url>
- <location>Monty Hall</location>
- <attendee>Henryk Plötz</attendee>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>92@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>92</pentabarf:event-id>
- <pentabarf:event-slug>hacking_contest</pentabarf:event-slug>
- <pentabarf:title>Capture the flag </pentabarf:title>
- <pentabarf:subtitle>hacking contest</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Capture the flag - hacking contest</summary>
- <description>In the talk we will give an introduction to CTF contests in IT security. Starting Friday, 10PM CEST, we will host a live CTF lasting 24 hours.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/92.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Hans-Christian Esperer</attendee>
- <attendee>mc.fly</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>92@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>92</pentabarf:event-id>
- <pentabarf:event-slug>hacking_contest</pentabarf:event-slug>
- <pentabarf:title>Capture the flag </pentabarf:title>
- <pentabarf:subtitle>hacking contest</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Capture the flag - hacking contest</summary>
- <description>In the talk we will give an introduction to CTF contests in IT security. Starting Friday, 10PM CEST, we will host a live CTF lasting 24 hours.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/92.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Hans-Christian Esperer</attendee>
- <attendee>mc.fly</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>36@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>36</pentabarf:event-id>
- <pentabarf:event-slug>classic_mistakes</pentabarf:event-slug>
- <pentabarf:title>Classic Mistakes</pentabarf:title>
- <pentabarf:subtitle>Mistakes made with the Mifare Classic</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Classic Mistakes- Mistakes made with the Mifare Classic</summary>
- <description>This lecture gives a broad overview of the vulnerabilities that exists in MIFARE Classic products and the way they are used by system integrators.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/36.en.html</url>
- <location>Monty Hall</location>
- <attendee>Roel Verdult</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>36@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>36</pentabarf:event-id>
- <pentabarf:event-slug>classic_mistakes</pentabarf:event-slug>
- <pentabarf:title>Classic Mistakes</pentabarf:title>
- <pentabarf:subtitle>Mistakes made with the Mifare Classic</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Classic Mistakes- Mistakes made with the Mifare Classic</summary>
- <description>This lecture gives a broad overview of the vulnerabilities that exists in MIFARE Classic products and the way they are used by system integrators.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/36.en.html</url>
- <location>Monty Hall</location>
- <attendee>Roel Verdult</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>147@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>147</pentabarf:event-id>
- <pentabarf:event-slug>har_closing</pentabarf:event-slug>
- <pentabarf:title>Closing Ceremony</pentabarf:title>
- <pentabarf:subtitle>So Long, and Thanks for All the ...</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T160000</dtstart>
- <dtend>20090816T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Closing Ceremony- So Long, and Thanks for All the ...</summary>
- <description>Closing Ceremony</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/147.en.html</url>
- <location>Monty Hall</location>
- <attendee>Aldert Hazenberg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>147@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>147</pentabarf:event-id>
- <pentabarf:event-slug>har_closing</pentabarf:event-slug>
- <pentabarf:title>Closing Ceremony</pentabarf:title>
- <pentabarf:subtitle>So Long, and Thanks for All the ...</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T160000</dtstart>
- <dtend>20090816T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Closing Ceremony- So Long, and Thanks for All the ...</summary>
- <description>Closing Ceremony</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/147.en.html</url>
- <location>Monty Hall</location>
- <attendee>Aldert Hazenberg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>210@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>210</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>coreboot</pentabarf:title>
- <pentabarf:subtitle>Beyond the final frontier</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>coreboot- Beyond the final frontier</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/210.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Stuge</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>210@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>210</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>coreboot</pentabarf:title>
- <pentabarf:subtitle>Beyond the final frontier</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>coreboot- Beyond the final frontier</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/210.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Stuge</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>57@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>57</pentabarf:event-id>
- <pentabarf:event-slug>countering_malware_analysis</pentabarf:event-slug>
- <pentabarf:title>Countering behavior based malware analysis</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Countering behavior based malware analysis</summary>
- <description>This paper and the talk will deal with behavior-based malware
-analysis, it's orgins and some general models.
-The paper will describe how malware detection focussing on semantics works, dicuss some simple schemes and the overall
-weaknesses of behavior-based malware detection.
-The paper and talk will be rather theoretical in nature, although practical examples and explanations are given.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/57.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Nomenumbra</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>57@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>57</pentabarf:event-id>
- <pentabarf:event-slug>countering_malware_analysis</pentabarf:event-slug>
- <pentabarf:title>Countering behavior based malware analysis</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Countering behavior based malware analysis</summary>
- <description>This paper and the talk will deal with behavior-based malware
-analysis, it's orgins and some general models.
-The paper will describe how malware detection focussing on semantics works, dicuss some simple schemes and the overall
-weaknesses of behavior-based malware detection.
-The paper and talk will be rather theoretical in nature, although practical examples and explanations are given.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/57.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Nomenumbra</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>187@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>187</pentabarf:event-id>
- <pentabarf:event-slug>cracking_a5_crypto</pentabarf:event-slug>
- <pentabarf:title>Cracking A5 GSM encryption</pentabarf:title>
- <pentabarf:subtitle>State of affairs</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Cracking A5 GSM encryption- State of affairs</summary>
- <description>Project web site: http://reflextor.com/trac/a51</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/187.en.html</url>
- <location>Monty Hall</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>187@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>187</pentabarf:event-id>
- <pentabarf:event-slug>cracking_a5_crypto</pentabarf:event-slug>
- <pentabarf:title>Cracking A5 GSM encryption</pentabarf:title>
- <pentabarf:subtitle>State of affairs</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Cracking A5 GSM encryption- State of affairs</summary>
- <description>Project web site: http://reflextor.com/trac/a51</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/187.en.html</url>
- <location>Monty Hall</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>78@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>78</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Cracking Internet</pentabarf:title>
- <pentabarf:subtitle>The urgency of DNSSEC</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Cracking Internet- The urgency of DNSSEC</summary>
- <description>This workshop will introduce the problems with DNS that jeapardise the Internet as a whole. We will begin with a general discussion, and argue that the only real solution that is ready now is DNSSEC. We will continue with more detailed discussions of the Kaminsky attack, and explain how to attack the machines that we prepared for attack during HAR2009.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/78.en.html</url>
- <location>Monty Hall</location>
- <attendee>Rick van Rein</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>78@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>78</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Cracking Internet</pentabarf:title>
- <pentabarf:subtitle>The urgency of DNSSEC</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Cracking Internet- The urgency of DNSSEC</summary>
- <description>This workshop will introduce the problems with DNS that jeapardise the Internet as a whole. We will begin with a general discussion, and argue that the only real solution that is ready now is DNSSEC. We will continue with more detailed discussions of the Kaminsky attack, and explain how to attack the machines that we prepared for attack during HAR2009.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/78.en.html</url>
- <location>Monty Hall</location>
- <attendee>Rick van Rein</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>149@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>149</pentabarf:event-id>
- <pentabarf:event-slug>deep_silicon_analysis</pentabarf:event-slug>
- <pentabarf:title>Deep Silicon Analysis</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Deep Silicon Analysis</summary>
- <description>Microchips have long been objects of fascination for hackers and geeks. The manuals of processors and microcontrollers are well studied as are their assembly languages. Now, what if you could dig deeper into a chip and fully understand its hardware implementation?
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/149.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>149@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>149</pentabarf:event-id>
- <pentabarf:event-slug>deep_silicon_analysis</pentabarf:event-slug>
- <pentabarf:title>Deep Silicon Analysis</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Deep Silicon Analysis</summary>
- <description>Microchips have long been objects of fascination for hackers and geeks. The manuals of processors and microcontrollers are well studied as are their assembly languages. Now, what if you could dig deeper into a chip and fully understand its hardware implementation?
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/149.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Karsten Nohl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>136@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>136</pentabarf:event-id>
- <pentabarf:event-slug>building_a_cyclotron</pentabarf:event-slug>
- <pentabarf:title>Design and Build a 2 MeV Cyclotron</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Design and Build a 2 MeV Cyclotron</summary>
- <description>Cyclotrons efficiently generate beams of charged particles at high energies, typically on the order of MeV. These charged particle beams have an immense range of applications in many different scientific and engineering fields--from biological engineering, to material science, to simple particle physics experiments.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/136.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Leslie Dewan</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>136@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>136</pentabarf:event-id>
- <pentabarf:event-slug>building_a_cyclotron</pentabarf:event-slug>
- <pentabarf:title>Design and Build a 2 MeV Cyclotron</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Design and Build a 2 MeV Cyclotron</summary>
- <description>Cyclotrons efficiently generate beams of charged particles at high energies, typically on the order of MeV. These charged particle beams have an immense range of applications in many different scientific and engineering fields--from biological engineering, to material science, to simple particle physics experiments.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/136.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Leslie Dewan</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>37@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>37</pentabarf:event-id>
- <pentabarf:event-slug>dev_embedded_devices</pentabarf:event-slug>
- <pentabarf:title>Developing embedded devices using opensource tools: application to handheld game consoles</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Developing embedded devices using opensource tools: application to handheld game consoles</summary>
- <description>Embedded device programming using opensource tools.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/37.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>jmfriedt</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>37@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>37</pentabarf:event-id>
- <pentabarf:event-slug>dev_embedded_devices</pentabarf:event-slug>
- <pentabarf:title>Developing embedded devices using opensource tools: application to handheld game consoles</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Developing embedded devices using opensource tools: application to handheld game consoles</summary>
- <description>Embedded device programming using opensource tools.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/37.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>jmfriedt</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>206@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>206</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Distributed social networking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>02H00M00S</duration>
- <summary>Distributed social networking</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/206.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Henry Story</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>206@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>206</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Distributed social networking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>02H00M00S</duration>
- <summary>Distributed social networking</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/206.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Henry Story</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>42@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>42</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>DNS Security In The Broadest Sense</pentabarf:title>
- <pentabarf:subtitle>Why DNS Security does and does not matter</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>DNS Security In The Broadest Sense- Why DNS Security does and does not matter</summary>
- <description>The Domain Name System underlies almost any transaction on the internet,
-from sending email to visiting a web page. Its security and reliability are
-therefore of paramount importance.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/42.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Bert Hubert</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>42@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>42</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>DNS Security In The Broadest Sense</pentabarf:title>
- <pentabarf:subtitle>Why DNS Security does and does not matter</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>DNS Security In The Broadest Sense- Why DNS Security does and does not matter</summary>
- <description>The Domain Name System underlies almost any transaction on the internet,
-from sending email to visiting a web page. Its security and reliability are
-therefore of paramount importance.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/42.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Bert Hubert</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>198@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>198</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>EDRi meet &amp; greet/workshop</pentabarf:title>
- <pentabarf:subtitle>Workshop for EDRi-members and related activist groups</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T180000</dtstart>
- <dtend>20090814T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>EDRi meet &amp; greet/workshop- Workshop for EDRi-members and related activist groups</summary>
- <description>Almost all European countries have one or more activist groups concerned with civil rights in a digital society. EDRi is a European platform for such organisations and has members in virtually all EU member states and the EFTA countries. A lot of the people involved hardly ever meet in person. Vrijschrift/Scriptum Libre would like to take advantage of the fact that quite a few Hacktivists will attend HAR2009 anyway and has found the HAR2009 organisation willing to provide room for just meeting each other as well as discussing the current state of European civil rights online and offline. More specific: what pieces of upcoming EU regulation warrant action by the various groups. This meeting is intended as a mostly free form event for those interested in this subject. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/198.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>198@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>198</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>EDRi meet &amp; greet/workshop</pentabarf:title>
- <pentabarf:subtitle>Workshop for EDRi-members and related activist groups</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T180000</dtstart>
- <dtend>20090814T190000</dtend>
- <duration>01H00M00S</duration>
- <summary>EDRi meet &amp; greet/workshop- Workshop for EDRi-members and related activist groups</summary>
- <description>Almost all European countries have one or more activist groups concerned with civil rights in a digital society. EDRi is a European platform for such organisations and has members in virtually all EU member states and the EFTA countries. A lot of the people involved hardly ever meet in person. Vrijschrift/Scriptum Libre would like to take advantage of the fact that quite a few Hacktivists will attend HAR2009 anyway and has found the HAR2009 organisation willing to provide room for just meeting each other as well as discussing the current state of European civil rights online and offline. More specific: what pieces of upcoming EU regulation warrant action by the various groups. This meeting is intended as a mostly free form event for those interested in this subject. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/198.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>60@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>60</pentabarf:event-id>
- <pentabarf:event-slug>elec_engineering</pentabarf:event-slug>
- <pentabarf:title>Electrical enginering with free/libre open source software</pentabarf:title>
- <pentabarf:subtitle>gEDA, PCB, Emdebian, positive vs negative vs proprietary vs floss standoff</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Electrical enginering with free/libre open source software- gEDA, PCB, Emdebian, positive vs negative vs proprietary vs floss standoff</summary>
- <description>In this talk Jelle is going to talk about hardware development with complete FLOSS based development tools. He is going to show the OpenARM Single Board Computer Project (SBC) and will explains some things about the Emdebbian project and the need of TDEBs.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/60.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jelle de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>60@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>60</pentabarf:event-id>
- <pentabarf:event-slug>elec_engineering</pentabarf:event-slug>
- <pentabarf:title>Electrical enginering with free/libre open source software</pentabarf:title>
- <pentabarf:subtitle>gEDA, PCB, Emdebian, positive vs negative vs proprietary vs floss standoff</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Electrical enginering with free/libre open source software- gEDA, PCB, Emdebian, positive vs negative vs proprietary vs floss standoff</summary>
- <description>In this talk Jelle is going to talk about hardware development with complete FLOSS based development tools. He is going to show the OpenARM Single Board Computer Project (SBC) and will explains some things about the Emdebbian project and the need of TDEBs.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/60.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jelle de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>165@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>165</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Exploiting Native Client</pentabarf:title>
- <pentabarf:subtitle>Google Native Client Security in a Brave New World</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>Exploiting Native Client- Google Native Client Security in a Brave New World</summary>
- <description>In a world buzzing full with concepts of mobile-cloud-virtualized-software-as-a-service-2.0 technology, the science of actually delivering applications over the web has never been more relevant. Enter Google Native Client, a radical new player hoping to match up to the collective powerhouse of Microsoft ActiveX, Sun Java and Adobe Flash.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/165.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ben Hawkes</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>165@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>165</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Exploiting Native Client</pentabarf:title>
- <pentabarf:subtitle>Google Native Client Security in a Brave New World</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>Exploiting Native Client- Google Native Client Security in a Brave New World</summary>
- <description>In a world buzzing full with concepts of mobile-cloud-virtualized-software-as-a-service-2.0 technology, the science of actually delivering applications over the web has never been more relevant. Enter Google Native Client, a radical new player hoping to match up to the collective powerhouse of Microsoft ActiveX, Sun Java and Adobe Flash.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/165.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ben Hawkes</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>166@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>166</pentabarf:event-id>
- <pentabarf:event-slug>eyeborg</pentabarf:event-slug>
- <pentabarf:title>Eyeborg project</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Eyeborg project</summary>
- <description>Take a one eyed film maker, an unemployed engineer, and a vision for something that's never been done before and you have yourself the EyeBorg Project. Rob Spence and Kosta Grammatis are trying to make history by embedding a video camera and a transmitter in a prosthetic eye. That eye is going in Robs eye socket, and will record the world from a perspective that's never been seen before. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/166.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Kosta Grammatis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>166@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>166</pentabarf:event-id>
- <pentabarf:event-slug>eyeborg</pentabarf:event-slug>
- <pentabarf:title>Eyeborg project</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Eyeborg project</summary>
- <description>Take a one eyed film maker, an unemployed engineer, and a vision for something that's never been done before and you have yourself the EyeBorg Project. Rob Spence and Kosta Grammatis are trying to make history by embedding a video camera and a transmitter in a prosthetic eye. That eye is going in Robs eye socket, and will record the world from a perspective that's never been seen before. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/166.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Kosta Grammatis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>124@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>124</pentabarf:event-id>
- <pentabarf:event-slug>how_to_get_v6</pentabarf:event-slug>
- <pentabarf:title>First woman on native IPv6, and other tales</pentabarf:title>
- <pentabarf:subtitle>How to get IPv6</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>First woman on native IPv6, and other tales- How to get IPv6</summary>
- <description>"All this, and native IPv6"
-
-Proud to be the first female XS4ALL customer using IPv6.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/124.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>BECHA</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>124@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>124</pentabarf:event-id>
- <pentabarf:event-slug>how_to_get_v6</pentabarf:event-slug>
- <pentabarf:title>First woman on native IPv6, and other tales</pentabarf:title>
- <pentabarf:subtitle>How to get IPv6</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>First woman on native IPv6, and other tales- How to get IPv6</summary>
- <description>"All this, and native IPv6"
-
-Proud to be the first female XS4ALL customer using IPv6.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/124.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>BECHA</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>74@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>74</pentabarf:event-id>
- <pentabarf:event-slug>fishphucker</pentabarf:event-slug>
- <pentabarf:title>Flipping the Phishing Con Game - Design and Implementation of FishPhucker</pentabarf:title>
- <pentabarf:subtitle>Anti-Phishing Extension</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Flipping the Phishing Con Game - Design and Implementation of FishPhucker- Anti-Phishing Extension</summary>
- <description>Numerous counter-measures against phishing have been evaluated in recent years. Users have been educated; authenticity in Bank websites was improved and out-of-band authentication methods were established, but phishing remains a problem. This work focuses on a new method which attempts to turn the tables on Phishers.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/74.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Dominik Birk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>74@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>74</pentabarf:event-id>
- <pentabarf:event-slug>fishphucker</pentabarf:event-slug>
- <pentabarf:title>Flipping the Phishing Con Game - Design and Implementation of FishPhucker</pentabarf:title>
- <pentabarf:subtitle>Anti-Phishing Extension</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Flipping the Phishing Con Game - Design and Implementation of FishPhucker- Anti-Phishing Extension</summary>
- <description>Numerous counter-measures against phishing have been evaluated in recent years. Users have been educated; authenticity in Bank websites was improved and out-of-band authentication methods were established, but phishing remains a problem. This work focuses on a new method which attempts to turn the tables on Phishers.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/74.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Dominik Birk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>203@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>203</pentabarf:event-id>
- <pentabarf:event-slug>workshop_restful_auth</pentabarf:event-slug>
- <pentabarf:title>FOAF+SSL: RESTful authentication for the Social Web</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>02H00M00S</duration>
- <summary>FOAF+SSL: RESTful authentication for the Social Web</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/203.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Henry Story</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>203@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>203</pentabarf:event-id>
- <pentabarf:event-slug>workshop_restful_auth</pentabarf:event-slug>
- <pentabarf:title>FOAF+SSL: RESTful authentication for the Social Web</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>02H00M00S</duration>
- <summary>FOAF+SSL: RESTful authentication for the Social Web</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/203.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Henry Story</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>65@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>65</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Foundry CAM hacking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>Dutch</pentabarf:language>
- <pentabarf:language-code>nl</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Foundry CAM hacking</summary>
- <description>De presentatie zal de internals (CAM) tonen van een redelijk standaard chassis gebaseerde switch/router (Foundry), demonstreren dat het (alhoewel unsupported) mogelijk is packet headers te dumpen middels een aantal ongedocumenteerde commando's, en proberen het hackersgevoel te delen dit alles uit te vinden.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/65.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Vincent Bourgonjen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>65@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>65</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Foundry CAM hacking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>niederländisch</pentabarf:language>
- <pentabarf:language-code>nl</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Foundry CAM hacking</summary>
- <description>De presentatie zal de internals (CAM) tonen van een redelijk standaard chassis gebaseerde switch/router (Foundry), demonstreren dat het (alhoewel unsupported) mogelijk is packet headers te dumpen middels een aantal ongedocumenteerde commando's, en proberen het hackersgevoel te delen dit alles uit te vinden.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/65.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Vincent Bourgonjen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>152@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>152</pentabarf:event-id>
- <pentabarf:event-slug>futureshock</pentabarf:event-slug>
- <pentabarf:title>Futureshock, don't panic!</pentabarf:title>
- <pentabarf:subtitle>how do we deal with accelerating change?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Futureshock, don't panic!- how do we deal with accelerating change?</summary>
- <description>A much improved and updated version of my 2005 What The Hack talk about the future of information, bio and nanotechologies, their convergence and it's consequences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/152.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arjen Kamphuis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>152@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>152</pentabarf:event-id>
- <pentabarf:event-slug>futureshock</pentabarf:event-slug>
- <pentabarf:title>Futureshock, don't panic!</pentabarf:title>
- <pentabarf:subtitle>how do we deal with accelerating change?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Futureshock, don't panic!- how do we deal with accelerating change?</summary>
- <description>A much improved and updated version of my 2005 What The Hack talk about the future of information, bio and nanotechologies, their convergence and it's consequences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/152.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arjen Kamphuis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>195@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>195</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Gnuradio workshop</pentabarf:title>
- <pentabarf:subtitle>build your own wireless device in software (using Software Defined Radio) which can transmit and receive any wireless signal</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T190000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>03H00M00S</duration>
- <summary>Gnuradio workshop- build your own wireless device in software (using Software Defined Radio) which can transmit and receive any wireless signal</summary>
- <description>In this workshop you will learn how to use Gnuradio to build Software Defined Radio applications which can transmit or receive any type of radiosignal. We will bring a few USRP's (Universal Software Radio Peripheral) which is an opensource hardware device which will be used as RF-frontend. All the processing (demodulation, modulation and so on) will run on your PC running Linux (Ubuntu jaunty is the easiest).
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/195.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>195@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>195</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Gnuradio workshop</pentabarf:title>
- <pentabarf:subtitle>build your own wireless device in software (using Software Defined Radio) which can transmit and receive any wireless signal</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T190000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>03H00M00S</duration>
- <summary>Gnuradio workshop- build your own wireless device in software (using Software Defined Radio) which can transmit and receive any wireless signal</summary>
- <description>In this workshop you will learn how to use Gnuradio to build Software Defined Radio applications which can transmit or receive any type of radiosignal. We will bring a few USRP's (Universal Software Radio Peripheral) which is an opensource hardware device which will be used as RF-frontend. All the processing (demodulation, modulation and so on) will run on your PC running Linux (Ubuntu jaunty is the easiest).
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/195.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>180@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>180</pentabarf:event-id>
- <pentabarf:event-slug>biza</pentabarf:event-slug>
- <pentabarf:title>Government and trust</pentabarf:title>
- <pentabarf:subtitle>Government 2.0</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Government and trust- Government 2.0</summary>
- <description>Governments are, on some levels, moving towards more transparency, yet they often are reluctant to really accept citizens' input. In turn, citizens often don't trust that their ideas and stories will really be taken into account. How do we get out of this deadlock? Can we?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/180.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Arnout Ponsioen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>180@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>180</pentabarf:event-id>
- <pentabarf:event-slug>biza</pentabarf:event-slug>
- <pentabarf:title>Government and trust</pentabarf:title>
- <pentabarf:subtitle>Government 2.0</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Government and trust- Government 2.0</summary>
- <description>Governments are, on some levels, moving towards more transparency, yet they often are reluctant to really accept citizens' input. In turn, citizens often don't trust that their ideas and stories will really be taken into account. How do we get out of this deadlock? Can we?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/180.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Arnout Ponsioen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>137@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>137</pentabarf:event-id>
- <pentabarf:event-slug>hackerjeopardy</pentabarf:event-slug>
- <pentabarf:title>Hacker Jeopardy</pentabarf:title>
- <pentabarf:subtitle>Number guessing for geeks</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T220000</dtstart>
- <dtend>20090815T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacker Jeopardy- Number guessing for geeks</summary>
- <description>Hacker Jeopardy Quiz Show, entertainment</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/137.en.html</url>
- <location>Monty Hall</location>
- <attendee>Ray</attendee>
- <attendee>Sec</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>137@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>137</pentabarf:event-id>
- <pentabarf:event-slug>hackerjeopardy</pentabarf:event-slug>
- <pentabarf:title>Hacker Jeopardy</pentabarf:title>
- <pentabarf:subtitle>Number guessing for geeks</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T220000</dtstart>
- <dtend>20090815T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacker Jeopardy- Number guessing for geeks</summary>
- <description>Hacker Jeopardy Quiz Show, entertainment</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/137.en.html</url>
- <location>Monty Hall</location>
- <attendee>Ray</attendee>
- <attendee>Sec</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>101@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>101</pentabarf:event-id>
- <pentabarf:event-slug>hackerspaces_everywhere</pentabarf:event-slug>
- <pentabarf:title>Hackerspaces Everywhere</pentabarf:title>
- <pentabarf:subtitle>Building the Future</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hackerspaces Everywhere- Building the Future</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/101.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>astera</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>101@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>101</pentabarf:event-id>
- <pentabarf:event-slug>hackerspaces_everywhere</pentabarf:event-slug>
- <pentabarf:title>Hackerspaces Everywhere</pentabarf:title>
- <pentabarf:subtitle>Building the Future</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hackerspaces Everywhere- Building the Future</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/101.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>astera</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>96@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>96</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Hacking Mona Lisa</pentabarf:title>
- <pentabarf:subtitle>Technology and policy for the digital humanities and cultural heritage</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking Mona Lisa- Technology and policy for the digital humanities and cultural heritage</summary>
- <description>I'd like to show some examples of the technologies that are used in bringing the the research areas of the humanities - history, art history, literature - and cultural heritage - collections and museums - to the web and present some of the technical and political challenges thereof: How to create novel databases of objects and "thick relations" for islamic manuscripts and how to deal with anonymous authors. How to serve gigabyte-size images of historical architectural drawings and other scans over low bandwidth lines in the web. How to deal with historical texts in diverse dead and living languages either artful with morphological analysis and ontologies or quickly and dirtyly. How to establish open source solutions and open access to historical sources and cultural heritage in some good and some bad examples of technology and policy.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/96.en.html</url>
- <location>Monty Hall</location>
- <attendee>Robert Casties</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>96@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>96</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Hacking Mona Lisa</pentabarf:title>
- <pentabarf:subtitle>Technology and policy for the digital humanities and cultural heritage</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking Mona Lisa- Technology and policy for the digital humanities and cultural heritage</summary>
- <description>I'd like to show some examples of the technologies that are used in bringing the the research areas of the humanities - history, art history, literature - and cultural heritage - collections and museums - to the web and present some of the technical and political challenges thereof: How to create novel databases of objects and "thick relations" for islamic manuscripts and how to deal with anonymous authors. How to serve gigabyte-size images of historical architectural drawings and other scans over low bandwidth lines in the web. How to deal with historical texts in diverse dead and living languages either artful with morphological analysis and ontologies or quickly and dirtyly. How to establish open source solutions and open access to historical sources and cultural heritage in some good and some bad examples of technology and policy.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/96.en.html</url>
- <location>Monty Hall</location>
- <attendee>Robert Casties</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>150@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>150</pentabarf:event-id>
- <pentabarf:event-slug>future_of_science</pentabarf:event-slug>
- <pentabarf:title>Hacking the Future of Science</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking the Future of Science</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/150.en.html</url>
- <location>Monty Hall</location>
- <attendee>Michael Nielsen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>150@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>150</pentabarf:event-id>
- <pentabarf:event-slug>future_of_science</pentabarf:event-slug>
- <pentabarf:title>Hacking the Future of Science</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking the Future of Science</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/150.en.html</url>
- <location>Monty Hall</location>
- <attendee>Michael Nielsen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>79@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>79</pentabarf:event-id>
- <pentabarf:event-slug>hacking_plants</pentabarf:event-slug>
- <pentabarf:title>Hacking with Plants</pentabarf:title>
- <pentabarf:subtitle>Permaculture as another domain for (technical) design</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking with Plants- Permaculture as another domain for (technical) design</summary>
- <description>Permaculture makes designs in the domain of (mostly) plants. Surprisingly, the approach in this fields greatly overlaps that of technical design. This means that designing an optimal plant system can be very appealing to a technical mind. And being inspired by nature, we may even learn a thing or two about our technical design style...</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/79.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rick van Rein</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>79@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>79</pentabarf:event-id>
- <pentabarf:event-slug>hacking_plants</pentabarf:event-slug>
- <pentabarf:title>Hacking with Plants</pentabarf:title>
- <pentabarf:subtitle>Permaculture as another domain for (technical) design</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hacking with Plants- Permaculture as another domain for (technical) design</summary>
- <description>Permaculture makes designs in the domain of (mostly) plants. Surprisingly, the approach in this fields greatly overlaps that of technical design. This means that designing an optimal plant system can be very appealing to a technical mind. And being inspired by nature, we may even learn a thing or two about our technical design style...</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/79.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Rick van Rein</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>110@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>110</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Hack the law!</pentabarf:title>
- <pentabarf:subtitle>Defend your freedoms while having fun!</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hack the law!- Defend your freedoms while having fun!</summary>
- <description>What happens when laws try to control the digital environment? Telecoms Package, "three strikes" (HADOPI), content filtering, software patents... It's all about control!
-
-Is law hackable like code? What can we do to change the law? How to do it? How can a bunch of hackers promote a better and more open society?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/110.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jérémie Zimmermann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>110@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>110</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Hack the law!</pentabarf:title>
- <pentabarf:subtitle>Defend your freedoms while having fun!</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Hack the law!- Defend your freedoms while having fun!</summary>
- <description>What happens when laws try to control the digital environment? Telecoms Package, "three strikes" (HADOPI), content filtering, software patents... It's all about control!
-
-Is law hackable like code? What can we do to change the law? How to do it? How can a bunch of hackers promote a better and more open society?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/110.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jérémie Zimmermann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>100@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>100</pentabarf:event-id>
- <pentabarf:event-slug>har_network_overview</pentabarf:event-slug>
- <pentabarf:title>HAR Network Overview &amp; BlinkenArea movie contest results</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T150000</dtstart>
- <dtend>20090816T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>HAR Network Overview &amp; BlinkenArea movie contest results</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/100.en.html</url>
- <location>Monty Hall</location>
- <attendee>Elisa Jasinska</attendee>
- <attendee>Leon Weber</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>100@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>100</pentabarf:event-id>
- <pentabarf:event-slug>har_network_overview</pentabarf:event-slug>
- <pentabarf:title>HAR Network Overview &amp; BlinkenArea movie contest results</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T150000</dtstart>
- <dtend>20090816T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>HAR Network Overview &amp; BlinkenArea movie contest results</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/100.en.html</url>
- <location>Monty Hall</location>
- <attendee>Elisa Jasinska</attendee>
- <attendee>Leon Weber</attendee>
- <attendee>Stephan 'ST' Kambor</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>103@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>103</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>How to reverse engineer backdoor algoritms hidden in firmware.</pentabarf:title>
- <pentabarf:subtitle>Disclosure of a backdoor in Accton based switches (3com and others)</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>How to reverse engineer backdoor algoritms hidden in firmware.- Disclosure of a backdoor in Accton based switches (3com and others)</summary>
- <description>How we reverse engineered a remote accesible backdoor in Accton-based switches.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/103.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>psy</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>103@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>103</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>How to reverse engineer backdoor algoritms hidden in firmware.</pentabarf:title>
- <pentabarf:subtitle>Disclosure of a backdoor in Accton based switches (3com and others)</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>How to reverse engineer backdoor algoritms hidden in firmware.- Disclosure of a backdoor in Accton based switches (3com and others)</summary>
- <description>How we reverse engineered a remote accesible backdoor in Accton-based switches.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/103.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>psy</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>153@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>153</pentabarf:event-id>
- <pentabarf:event-slug>quantum_crypto</pentabarf:event-slug>
- <pentabarf:title>How to use quantum cryptography for secure identification</pentabarf:title>
- <pentabarf:subtitle>Making the most of noise</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>How to use quantum cryptography for secure identification- Making the most of noise</summary>
- <description>The goal of secure identification is to enable a user, Alice, to identify herself to Bob without revealing her password. Unfortunately, like many other interesting cryptographic problems involving two parties, this is impossible to achieve without making assumptions. For example, we could assume that factoring a large number is difficult. However it is not known whether this assumption is correct. In this talk, we will instead assume that it is difficult to store quantum states, in the sense that the quantum memory available to an attacker is noisy. We propose a simple quantum protocol that can be used to solve this task which is implementable using present day hardware.
-
-No knowledge of quantum cryptography or math will be required. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/153.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Stephanie Wehner</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>153@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>153</pentabarf:event-id>
- <pentabarf:event-slug>quantum_crypto</pentabarf:event-slug>
- <pentabarf:title>How to use quantum cryptography for secure identification</pentabarf:title>
- <pentabarf:subtitle>Making the most of noise</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T140000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>How to use quantum cryptography for secure identification- Making the most of noise</summary>
- <description>The goal of secure identification is to enable a user, Alice, to identify herself to Bob without revealing her password. Unfortunately, like many other interesting cryptographic problems involving two parties, this is impossible to achieve without making assumptions. For example, we could assume that factoring a large number is difficult. However it is not known whether this assumption is correct. In this talk, we will instead assume that it is difficult to store quantum states, in the sense that the quantum memory available to an attacker is noisy. We propose a simple quantum protocol that can be used to solve this task which is implementable using present day hardware.
-
-No knowledge of quantum cryptography or math will be required. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/153.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Stephanie Wehner</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>63@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>63</pentabarf:event-id>
- <pentabarf:event-slug>how_we_hack</pentabarf:event-slug>
- <pentabarf:title>How we break into domains</pentabarf:title>
- <pentabarf:subtitle>What every admin should know about Windows security</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>How we break into domains- What every admin should know about Windows security</summary>
- <description>It's a cliché that most networks are hard on the outside and soft and chewy on the inside, but it's true. Securing networks is hard and it shows: most domains are easy to break into. I'll describe the weaknesses in networks we abuse to gain access to most, if not all, systems on a LAN. We'll go over some of the basics, such as problems with patching and passwords, but also some more advanced recent developments, such as hijacking Windows access tokens. I will describe how state of the art techniques can be combined to take over a domain, and how to protect your domain and your company.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/63.en.html</url>
- <location>Monty Hall</location>
- <attendee>Niels Teusink</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>63@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>63</pentabarf:event-id>
- <pentabarf:event-slug>how_we_hack</pentabarf:event-slug>
- <pentabarf:title>How we break into domains</pentabarf:title>
- <pentabarf:subtitle>What every admin should know about Windows security</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>How we break into domains- What every admin should know about Windows security</summary>
- <description>It's a cliché that most networks are hard on the outside and soft and chewy on the inside, but it's true. Securing networks is hard and it shows: most domains are easy to break into. I'll describe the weaknesses in networks we abuse to gain access to most, if not all, systems on a LAN. We'll go over some of the basics, such as problems with patching and passwords, but also some more advanced recent developments, such as hijacking Windows access tokens. I will describe how state of the art techniques can be combined to take over a domain, and how to protect your domain and your company.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/63.en.html</url>
- <location>Monty Hall</location>
- <attendee>Niels Teusink</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>168@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>168</pentabarf:event-id>
- <pentabarf:event-slug>quantum_eavesdropping</pentabarf:event-slug>
- <pentabarf:title>How we eavesdropped 100% of a quantum cryptographic key</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>How we eavesdropped 100% of a quantum cryptographic key</summary>
- <description>Quantum cryptography, as being based on the laws of physics, was claimed to be much more secure than all classical cryptography schemes. (Un)fortunately
-physical hardware is not beyond of an evil control: We present a successful attack of an existing quantum key distribution system exploiting a photon detector vulnerability which is probably present in all existing devices. Without Alice and Bob losing their faith in their secure communication, we recorded 100% of the supposedly secret key.
-
-The actual eavesdropping hardware we have built will be shown during the conference.
-
-A brief intro into quantum cryptography will be given at the beginning of the talk. Then, Vadim Makarov will explain the above attack. At the end of the talk, Ilja Gerhardt will (hopefully) present another application of the discovered detector vulnerability, which shall remain a surprise :)</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/168.en.html</url>
- <location>Monty Hall</location>
- <attendee>Ilja Gerhardt</attendee>
- <attendee>Vadim Makarov</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>168@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>168</pentabarf:event-id>
- <pentabarf:event-slug>quantum_eavesdropping</pentabarf:event-slug>
- <pentabarf:title>How we eavesdropped 100% of a quantum cryptographic key</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>How we eavesdropped 100% of a quantum cryptographic key</summary>
- <description>Quantum cryptography, as being based on the laws of physics, was claimed to be much more secure than all classical cryptography schemes. (Un)fortunately
-physical hardware is not beyond of an evil control: We present a successful attack of an existing quantum key distribution system exploiting a photon detector vulnerability which is probably present in all existing devices. Without Alice and Bob losing their faith in their secure communication, we recorded 100% of the supposedly secret key.
-
-The actual eavesdropping hardware we have built will be shown during the conference.
-
-A brief intro into quantum cryptography will be given at the beginning of the talk. Then, Vadim Makarov will explain the above attack. At the end of the talk, Ilja Gerhardt will (hopefully) present another application of the discovered detector vulnerability, which shall remain a surprise :)</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/168.en.html</url>
- <location>Monty Hall</location>
- <attendee>Ilja Gerhardt</attendee>
- <attendee>Vadim Makarov</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>75@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>75</pentabarf:event-id>
- <pentabarf:event-slug>identity_processes</pentabarf:event-slug>
- <pentabarf:title>Identity processes</pentabarf:title>
- <pentabarf:subtitle>Why we put our most intimate details on the net and are still worried about our privacy</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Identity processes- Why we put our most intimate details on the net and are still worried about our privacy</summary>
- <description>When trying to understand what privacy is and how it works, it is very helpful to have some idea of what human identity is. In this presentation I will sharpen our concept of privacy by taking a 'discursive' view on identity as starting point. This enables us to understand the privacy challenges the digitalization of our society poses. After this presentation you will know:
-- why identities can't be stolen
-- why we put our most intimate details on the net and are still worried about our privacy
-- why ISP's and search engines are in the frontline of the privacy debate
-- what the problem is of modern surveillance
-- And of course you will know the most brutal ways to violate somebodies privacy.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/75.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Winfried Tilanus</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>75@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>75</pentabarf:event-id>
- <pentabarf:event-slug>identity_processes</pentabarf:event-slug>
- <pentabarf:title>Identity processes</pentabarf:title>
- <pentabarf:subtitle>Why we put our most intimate details on the net and are still worried about our privacy</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Identity processes- Why we put our most intimate details on the net and are still worried about our privacy</summary>
- <description>When trying to understand what privacy is and how it works, it is very helpful to have some idea of what human identity is. In this presentation I will sharpen our concept of privacy by taking a 'discursive' view on identity as starting point. This enables us to understand the privacy challenges the digitalization of our society poses. After this presentation you will know:
-- why identities can't be stolen
-- why we put our most intimate details on the net and are still worried about our privacy
-- why ISP's and search engines are in the frontline of the privacy debate
-- what the problem is of modern surveillance
-- And of course you will know the most brutal ways to violate somebodies privacy.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/75.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Winfried Tilanus</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>209@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>209</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>IPv6</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>IPv6</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/209.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>209@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>209</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>IPv6</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T120000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>IPv6</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/209.en.html</url>
- <location>Bike-shed Red</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>127@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>127</pentabarf:event-id>
- <pentabarf:event-slug>java_card</pentabarf:event-slug>
- <pentabarf:title>Java Card</pentabarf:title>
- <pentabarf:subtitle>Another Java hype or what?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Java Card- Another Java hype or what?</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/127.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Eduard Karel de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>127@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>127</pentabarf:event-id>
- <pentabarf:event-slug>java_card</pentabarf:event-slug>
- <pentabarf:title>Java Card</pentabarf:title>
- <pentabarf:subtitle>Another Java hype or what?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Java Card- Another Java hype or what?</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/127.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Eduard Karel de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>68@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>68</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Life or Death Cryptology: it is not about the encryption algorithm</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Life or Death Cryptology: it is not about the encryption algorithm</summary>
- <description>Protecting secrets is hard. Some of the things you currently trust to protect your secrets may be totally wrong. Even more so if you look at international espionage and protecting Top Secret information at the government level. A view into the world of state level security may really influence the way you look at protecting secrets. As information becomes more important, more threats arise. It actually all boils down to one thing. Trust.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/68.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Paul Bakker</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>68@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>68</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Life or Death Cryptology: it is not about the encryption algorithm</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Life or Death Cryptology: it is not about the encryption algorithm</summary>
- <description>Protecting secrets is hard. Some of the things you currently trust to protect your secrets may be totally wrong. Even more so if you look at international espionage and protecting Top Secret information at the government level. A view into the world of state level security may really influence the way you look at protecting secrets. As information becomes more important, more threats arise. It actually all boils down to one thing. Trust.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/68.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Paul Bakker</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>182@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>182</pentabarf:event-id>
- <pentabarf:event-slug>lightning_friday</pentabarf:event-slug>
- <pentabarf:title>Lightning talks Friday</pentabarf:title>
- <pentabarf:subtitle>7 short lectures in 2 hours</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>02H00M00S</duration>
- <summary>Lightning talks Friday- 7 short lectures in 2 hours</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/182.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Don Hopkins</attendee>
- <attendee>Hoppel</attendee>
- <attendee>jbe</attendee>
- <attendee>Melvin Rook</attendee>
- <attendee>Rene "cavac" Schickbauer</attendee>
- <attendee>Sébastien Bourdeauducq</attendee>
- <attendee>tille</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>182@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>182</pentabarf:event-id>
- <pentabarf:event-slug>lightning_friday</pentabarf:event-slug>
- <pentabarf:title>Lightning talks Friday</pentabarf:title>
- <pentabarf:subtitle>7 short lectures in 2 hours</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>02H00M00S</duration>
- <summary>Lightning talks Friday- 7 short lectures in 2 hours</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/182.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Don Hopkins</attendee>
- <attendee>Hoppel</attendee>
- <attendee>jbe</attendee>
- <attendee>Melvin Rook</attendee>
- <attendee>Rene "cavac" Schickbauer</attendee>
- <attendee>Sébastien Bourdeauducq</attendee>
- <attendee>tille</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>183@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>183</pentabarf:event-id>
- <pentabarf:event-slug>lightning_saturday</pentabarf:event-slug>
- <pentabarf:title>Lightning talks Saturday</pentabarf:title>
- <pentabarf:subtitle>7 short lectures in 2 hours</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>02H00M00S</duration>
- <summary>Lightning talks Saturday- 7 short lectures in 2 hours</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/183.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Elger 'Stitch' Jonker</attendee>
- <attendee>Esther Weltevrede</attendee>
- <attendee>Harmen P. (Murf) de Ruiter</attendee>
- <attendee>Kristian Mueller</attendee>
- <attendee>Menneau</attendee>
- <attendee>Rene "cavac" Schickbauer</attendee>
- <attendee>Ruediger Weis</attendee>
- <attendee>Wouter Tebbens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>183@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>183</pentabarf:event-id>
- <pentabarf:event-slug>lightning_saturday</pentabarf:event-slug>
- <pentabarf:title>Lightning talks Saturday</pentabarf:title>
- <pentabarf:subtitle>7 short lectures in 2 hours</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T130000</dtend>
- <duration>02H00M00S</duration>
- <summary>Lightning talks Saturday- 7 short lectures in 2 hours</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/183.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Elger 'Stitch' Jonker</attendee>
- <attendee>Esther Weltevrede</attendee>
- <attendee>Harmen P. (Murf) de Ruiter</attendee>
- <attendee>Kristian Mueller</attendee>
- <attendee>Menneau</attendee>
- <attendee>Rene "cavac" Schickbauer</attendee>
- <attendee>Ruediger Weis</attendee>
- <attendee>Wouter Tebbens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>32@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>32</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Locally Exploiting Wireless Sensors</pentabarf:title>
- <pentabarf:subtitle>Breaking AES by Syringe</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Locally Exploiting Wireless Sensors- Breaking AES by Syringe</summary>
- <description>Wireless sensors are often built with a microcontroller and a radio chip, connected only by a SPI bus. The radio, not the MCU, is responsible for symmetric cryptography of each packet. When the key is loaded, it is sent as cleartext over the SPI bus, and an attacker with local access can steal the key using a few syringe probes and readily available hardware. This attack and other local attacks against wireless sensor networks will be presented in detail, including a live demo of an AES128 key being extracted from an operational network. Following the conclusion of the lecture, audience members will be brought onstage to perform the attack themselves on various pieces of example hardware.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/32.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Travis Goodspeed</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>32@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>32</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Locally Exploiting Wireless Sensors</pentabarf:title>
- <pentabarf:subtitle>Breaking AES by Syringe</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Locally Exploiting Wireless Sensors- Breaking AES by Syringe</summary>
- <description>Wireless sensors are often built with a microcontroller and a radio chip, connected only by a SPI bus. The radio, not the MCU, is responsible for symmetric cryptography of each packet. When the key is loaded, it is sent as cleartext over the SPI bus, and an attacker with local access can steal the key using a few syringe probes and readily available hardware. This attack and other local attacks against wireless sensor networks will be presented in detail, including a live demo of an AES128 key being extracted from an operational network. Following the conclusion of the lecture, audience members will be brought onstage to perform the attack themselves on various pieces of example hardware.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/32.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Travis Goodspeed</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>159@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>159</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Lockpicking</pentabarf:title>
- <pentabarf:subtitle>How lock-enthousiasts are keeping up with the state of the art</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Lockpicking- How lock-enthousiasts are keeping up with the state of the art</summary>
- <description>This talk will detail the changes in lockpicking. It will tell the story of a rapidly changing universe once dark and mysterious which is now increasingly populated by lock-enthousiasts that simply enjoy the challenge mechanical locks present and freely share what they learn. You will learn how the lock industry is coming to terms with all of this, about new developments in safes, locks and opening techniques and you will get a general idea of how the world of locks and lockpicking is maturing.
-
-Barry and Han have done entertaining presentations on lockpicking at past hacker events and both take pride in never doing the same talk twice and always coming up with something new to show.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/159.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Barry - The Key - Wels</attendee>
- <attendee>Han Fey</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>159@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>159</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Lockpicking</pentabarf:title>
- <pentabarf:subtitle>How lock-enthousiasts are keeping up with the state of the art</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Lockpicking- How lock-enthousiasts are keeping up with the state of the art</summary>
- <description>This talk will detail the changes in lockpicking. It will tell the story of a rapidly changing universe once dark and mysterious which is now increasingly populated by lock-enthousiasts that simply enjoy the challenge mechanical locks present and freely share what they learn. You will learn how the lock industry is coming to terms with all of this, about new developments in safes, locks and opening techniques and you will get a general idea of how the world of locks and lockpicking is maturing.
-
-Barry and Han have done entertaining presentations on lockpicking at past hacker events and both take pride in never doing the same talk twice and always coming up with something new to show.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/159.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Barry - The Key - Wels</attendee>
- <attendee>Han Fey</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>205@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>205</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Massage for Nerds</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Massage for Nerds</summary>
- <description>Feeling tense? Overworked? Always wanted to know the secrets to good relaxation?
-
-The massage for nerds workshop may be of help. I will try to teach you some basic massage principles and skills and demonstrate some techniques to relax.
-Wear loose clothing, you may want to bring a matress (not the big wobbly instable inflatable ones, they don't work well). Part of it is self-massage, the other part is work with a partner. You can bring your own nerd or find one on the spot.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/205.en.html</url>
- <location>Bike-shed Green</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>205@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>205</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Massage for Nerds</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Massage for Nerds</summary>
- <description>Feeling tense? Overworked? Always wanted to know the secrets to good relaxation?
-
-The massage for nerds workshop may be of help. I will try to teach you some basic massage principles and skills and demonstrate some techniques to relax.
-Wear loose clothing, you may want to bring a matress (not the big wobbly instable inflatable ones, they don't work well). Part of it is self-massage, the other part is work with a partner. You can bring your own nerd or find one on the spot.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/205.en.html</url>
- <location>Bike-shed Green</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>77@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>77</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>MinixWall</pentabarf:title>
- <pentabarf:subtitle>rethinking secure systems</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>MinixWall- rethinking secure systems</summary>
- <description>Two of the main points are size and isolation. The Minix 3 kernel is less
-than thousand times smaller as Linux. All drivers and the IP stack live
-in user land. And this time Minix is Open Source.
-We show a portation of the netfilter framework, which leads to a
-system with better stability and security than the widely used Linux solutions.
-Additional we present some new result regarding virtualiced systems using
-a small amount of resources to add MinixWall into existing systems.
-Additional we present some new result regarding virtualized systems using
-a small amount of resources to add MinixWall into existing systems.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/77.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Ruediger Weis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>77@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>77</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>MinixWall</pentabarf:title>
- <pentabarf:subtitle>rethinking secure systems</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T120000</dtstart>
- <dtend>20090816T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>MinixWall- rethinking secure systems</summary>
- <description>Two of the main points are size and isolation. The Minix 3 kernel is less
-than thousand times smaller as Linux. All drivers and the IP stack live
-in user land. And this time Minix is Open Source.
-We show a portation of the netfilter framework, which leads to a
-system with better stability and security than the widely used Linux solutions.
-Additional we present some new result regarding virtualiced systems using
-a small amount of resources to add MinixWall into existing systems.
-Additional we present some new result regarding virtualized systems using
-a small amount of resources to add MinixWall into existing systems.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/77.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Ruediger Weis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>204@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>204</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Multitouch workshop</pentabarf:title>
- <pentabarf:subtitle>Create your own multitouch application.</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T180000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>03H00M00S</duration>
- <summary>Multitouch workshop- Create your own multitouch application.</summary>
- <description>In this workshop you will learn the basics of multitouch software development with [libavg](http://libavg.de/ "libavg") and create your own multitouch application.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/204.en.html</url>
- <location>Bike-shed Yellow</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>204@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>204</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Multitouch workshop</pentabarf:title>
- <pentabarf:subtitle>Create your own multitouch application.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T180000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>03H00M00S</duration>
- <summary>Multitouch workshop- Create your own multitouch application.</summary>
- <description>In this workshop you will learn the basics of multitouch software development with [libavg](http://libavg.de/ "libavg") and create your own multitouch application.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/204.en.html</url>
- <location>Bike-shed Yellow</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>188@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>188</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>MultiVerse workshop</pentabarf:title>
- <pentabarf:subtitle>Creating an open, decentralized, virtual world.</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>02H00M00S</duration>
- <summary>MultiVerse workshop- Creating an open, decentralized, virtual world.</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/188.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Gabriel Konat</attendee>
- <attendee>Melvin Rook</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>188@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>188</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>MultiVerse workshop</pentabarf:title>
- <pentabarf:subtitle>Creating an open, decentralized, virtual world.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T140000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>02H00M00S</duration>
- <summary>MultiVerse workshop- Creating an open, decentralized, virtual world.</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/188.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Gabriel Konat</attendee>
- <attendee>Melvin Rook</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>145@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>145</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>My BREIN hurts! </pentabarf:title>
- <pentabarf:subtitle>FTD's fight against the "Dutch RIAA"</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>My BREIN hurts! - FTD's fight against the "Dutch RIAA"</summary>
- <description>Under Dutch copyright law, downloading movies and songs for personal use is entirely legal. This presents a unique legal problem for copyright enforcers like "Dutch RIAA" /Stichting BREIN/. Many sites have popped up that point people to opportunities for legal downloading. One of them is FTD, a place to "spot" binaries posted on Usenet. BREIN has accused Usenet and FTD of "facilitating illegal uploading for profit" and called FTD's activities "a criminal act". In response, FTD has gone to court to demand a ruling that FTD is operating legally, that downloading is legal and that BREIN should just shut up. Dutch IT-lawyer Arnoud Engelfriet, one of the lawyers representing FTD in court, will discuss the court case and the Dutch legal situation. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/145.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arnoud Engelfriet</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>145@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>145</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>My BREIN hurts! </pentabarf:title>
- <pentabarf:subtitle>FTD's fight against the "Dutch RIAA"</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>My BREIN hurts! - FTD's fight against the "Dutch RIAA"</summary>
- <description>Under Dutch copyright law, downloading movies and songs for personal use is entirely legal. This presents a unique legal problem for copyright enforcers like "Dutch RIAA" /Stichting BREIN/. Many sites have popped up that point people to opportunities for legal downloading. One of them is FTD, a place to "spot" binaries posted on Usenet. BREIN has accused Usenet and FTD of "facilitating illegal uploading for profit" and called FTD's activities "a criminal act". In response, FTD has gone to court to demand a ruling that FTD is operating legally, that downloading is legal and that BREIN should just shut up. Dutch IT-lawyer Arnoud Engelfriet, one of the lawyers representing FTD in court, will discuss the court case and the Dutch legal situation. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/145.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arnoud Engelfriet</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>94@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>94</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Native IPv6 deployment at XS4ALL</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Native IPv6 deployment at XS4ALL</summary>
- <description>XS4ALL is currently rolling out native IPv6 on it's network. This talk will show some of the technology involved and problems encountered.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/94.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Marco Hogewoning</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>94@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>94</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Native IPv6 deployment at XS4ALL</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Native IPv6 deployment at XS4ALL</summary>
- <description>XS4ALL is currently rolling out native IPv6 on it's network. This talk will show some of the technology involved and problems encountered.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/94.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Marco Hogewoning</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>53@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>53</pentabarf:event-id>
- <pentabarf:event-slug>openbeer_workshop</pentabarf:event-slug>
- <pentabarf:title>OpenBeer Workshop</pentabarf:title>
- <pentabarf:subtitle>Learn how to make a delicious home-brew beer</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>02H00M00S</duration>
- <summary>OpenBeer Workshop- Learn how to make a delicious home-brew beer</summary>
- <description>In this workshop we will first discuss the theory behind brewing. After that, we will do the actual brewing. The day after, fermentation starts. Participants can opt in to be sent a bottle of their own brew about 3 weeks after the event. There might also be some tasting sessions.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/53.en.html</url>
- <location>Village BSD</location>
- <attendee>tille</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>53@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>53</pentabarf:event-id>
- <pentabarf:event-slug>openbeer_workshop</pentabarf:event-slug>
- <pentabarf:title>OpenBeer Workshop</pentabarf:title>
- <pentabarf:subtitle>Learn how to make a delicious home-brew beer</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>02H00M00S</duration>
- <summary>OpenBeer Workshop- Learn how to make a delicious home-brew beer</summary>
- <description>In this workshop we will first discuss the theory behind brewing. After that, we will do the actual brewing. The day after, fermentation starts. Participants can opt in to be sent a bottle of their own brew about 3 weeks after the event. There might also be some tasting sessions.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/53.en.html</url>
- <location>Village BSD</location>
- <attendee>tille</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>194@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>194</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Open Blueprints</pentabarf:title>
- <pentabarf:subtitle>Creative Commons &amp; Design</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>03H00M00S</duration>
- <summary>Open Blueprints- Creative Commons &amp; Design</summary>
- <description>A workshop on how to apply a creative commons license for design and the judicial space between copyright and model right.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/194.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>194@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>194</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Open Blueprints</pentabarf:title>
- <pentabarf:subtitle>Creative Commons &amp; Design</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>03H00M00S</duration>
- <summary>Open Blueprints- Creative Commons &amp; Design</summary>
- <description>A workshop on how to apply a creative commons license for design and the judicial space between copyright and model right.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/194.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>185@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>185</pentabarf:event-id>
- <pentabarf:event-slug>openbsc</pentabarf:event-slug>
- <pentabarf:title>OpenBSC</pentabarf:title>
- <pentabarf:subtitle>Running your own GSM network</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>OpenBSC- Running your own GSM network</summary>
- <description>OpenBSC is a Free Software implementation of the minimal subset of
-the major backend components of a GSM network, such as BSC, MSC, HLR, EIR.
-Using a commercial GSM BTS and attaching it to a Linux system running
-the OpenBSC software allows you to run your own GSM "network in a box".</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/185.en.html</url>
- <location>Monty Hall</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>185@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>185</pentabarf:event-id>
- <pentabarf:event-slug>openbsc</pentabarf:event-slug>
- <pentabarf:title>OpenBSC</pentabarf:title>
- <pentabarf:subtitle>Running your own GSM network</pentabarf:subtitle>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>OpenBSC- Running your own GSM network</summary>
- <description>OpenBSC is a Free Software implementation of the minimal subset of
-the major backend components of a GSM network, such as BSC, MSC, HLR, EIR.
-Using a commercial GSM BTS and attaching it to a Linux system running
-the OpenBSC software allows you to run your own GSM "network in a box".</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/185.en.html</url>
- <location>Monty Hall</location>
- <attendee>Harald Welte</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>85@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>85</pentabarf:event-id>
- <pentabarf:event-slug>har_opening</pentabarf:event-slug>
- <pentabarf:title>Opening ceremony</pentabarf:title>
- <pentabarf:subtitle>Welcome to HAR2009</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T110000</dtstart>
- <dtend>20090813T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>Opening ceremony- Welcome to HAR2009</summary>
- <description>Opening ceremony.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/85.en.html</url>
- <location>Monty Hall</location>
- <attendee>Koen Martens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>85@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>85</pentabarf:event-id>
- <pentabarf:event-slug>har_opening</pentabarf:event-slug>
- <pentabarf:title>Opening ceremony</pentabarf:title>
- <pentabarf:subtitle>Welcome to HAR2009</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T110000</dtstart>
- <dtend>20090813T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>Opening ceremony- Welcome to HAR2009</summary>
- <description>Opening ceremony.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/85.en.html</url>
- <location>Monty Hall</location>
- <attendee>Koen Martens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>61@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>61</pentabarf:event-id>
- <pentabarf:event-slug>opensolaris_workshop</pentabarf:event-slug>
- <pentabarf:title>OpenSolaris Workshop</pentabarf:title>
- <pentabarf:subtitle>Why switch? What's better? Why another open source operating system?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>02H00M00S</duration>
- <summary>OpenSolaris Workshop- Why switch? What's better? Why another open source operating system?</summary>
- <description>At first glance, you may mistake OpenSolaris for any other Linux distro. It uses GNOME for its desktop and GNU utilities such as sudo and top work as expected. However, as you dig deeper you'll find some nice surprises - a truly granular security framework, a service management facility that replaces antiquated rc*.d scripts, a dynamic tracing utility with incredible insight and a a new file system that is utterly refreshing. In this hands-on-workshop we'll cover the following:
-
- * The OpenSolaris you already know
- o GNOME
- o GNU Utilities
- * The OpenSolaris you want to know
- o RBAC
- o SMF
- o DTrace
- o ZFS w/ TimeSlider
- * The OpenSolaris you need to know
- o IPS
- o Networking
- o The Innovation Continues
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/61.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Brian Leonard</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>61@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>61</pentabarf:event-id>
- <pentabarf:event-slug>opensolaris_workshop</pentabarf:event-slug>
- <pentabarf:title>OpenSolaris Workshop</pentabarf:title>
- <pentabarf:subtitle>Why switch? What's better? Why another open source operating system?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>02H00M00S</duration>
- <summary>OpenSolaris Workshop- Why switch? What's better? Why another open source operating system?</summary>
- <description>At first glance, you may mistake OpenSolaris for any other Linux distro. It uses GNOME for its desktop and GNU utilities such as sudo and top work as expected. However, as you dig deeper you'll find some nice surprises - a truly granular security framework, a service management facility that replaces antiquated rc*.d scripts, a dynamic tracing utility with incredible insight and a a new file system that is utterly refreshing. In this hands-on-workshop we'll cover the following:
-
- * The OpenSolaris you already know
- o GNOME
- o GNU Utilities
- * The OpenSolaris you want to know
- o RBAC
- o SMF
- o DTrace
- o ZFS w/ TimeSlider
- * The OpenSolaris you need to know
- o IPS
- o Networking
- o The Innovation Continues
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/61.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Brian Leonard</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>113@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>113</pentabarf:event-id>
- <pentabarf:event-slug>organising_a_con</pentabarf:event-slug>
- <pentabarf:title>Organising a Con</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Organising a Con</summary>
- <description>Presentation and discussion from a panel of core conference organizers on their experiences in organizing conferences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/113.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>David Dolphin (tyrion)</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>113@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>113</pentabarf:event-id>
- <pentabarf:event-slug>organising_a_con</pentabarf:event-slug>
- <pentabarf:title>Organising a Con</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Organising a Con</summary>
- <description>Presentation and discussion from a panel of core conference organizers on their experiences in organizing conferences.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/113.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>David Dolphin (tyrion)</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>59@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>59</pentabarf:event-id>
- <pentabarf:event-slug>government_transparency</pentabarf:event-slug>
- <pentabarf:title>Our dutch road to government transparency</pentabarf:title>
- <pentabarf:subtitle>Dutch road to help free our government from closed workflows and closed ict-systems</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Our dutch road to government transparency- Dutch road to help free our government from closed workflows and closed ict-systems</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/59.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Jelle de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>59@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>59</pentabarf:event-id>
- <pentabarf:event-slug>government_transparency</pentabarf:event-slug>
- <pentabarf:title>Our dutch road to government transparency</pentabarf:title>
- <pentabarf:subtitle>Dutch road to help free our government from closed workflows and closed ict-systems</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Our dutch road to government transparency- Dutch road to help free our government from closed workflows and closed ict-systems</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/59.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Jelle de Jong</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>170@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>170</pentabarf:event-id>
- <pentabarf:event-slug>panel_discussion</pentabarf:event-slug>
- <pentabarf:title>Panel discussion with Brein and HAR</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Panel discussion with Brein and HAR</summary>
- <description>Panel discussion with Brein, MPAA and HAR</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/170.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arjen Kamphuis</attendee>
- <attendee>Tim Kuik</attendee>
- <attendee>Walter van Holst</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>170@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>170</pentabarf:event-id>
- <pentabarf:event-slug>panel_discussion</pentabarf:event-slug>
- <pentabarf:title>Panel discussion with Brein and HAR</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Panel discussion with Brein and HAR</summary>
- <description>Panel discussion with Brein, MPAA and HAR</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/170.en.html</url>
- <location>Monty Hall</location>
- <attendee>Arjen Kamphuis</attendee>
- <attendee>Tim Kuik</attendee>
- <attendee>Walter van Holst</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>193@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>193</pentabarf:event-id>
- <pentabarf:event-slug>pgp_and_cacert_key_signing_party</pentabarf:event-slug>
- <pentabarf:title>PGP and CAcert key signing party</pentabarf:title>
- <pentabarf:subtitle>Have your PGP key signed; have yourself assured</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T180000</dtstart>
- <dtend>20090815T200000</dtend>
- <duration>02H00M00S</duration>
- <summary>PGP and CAcert key signing party- Have your PGP key signed; have yourself assured</summary>
- <description>PGP public key and CAcert certificate identification is based on multiple (the more the better) persons doing an identification check with official identity document(s), like a driver license, passports, identity cards, etc.: the Web of Trustworthy. The Web of Trust is basically a reciprocal process: one has to identify to each other.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/193.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Udo</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>193@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>193</pentabarf:event-id>
- <pentabarf:event-slug>pgp_and_cacert_key_signing_party</pentabarf:event-slug>
- <pentabarf:title>PGP and CAcert key signing party</pentabarf:title>
- <pentabarf:subtitle>Have your PGP key signed; have yourself assured</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T180000</dtstart>
- <dtend>20090815T200000</dtend>
- <duration>02H00M00S</duration>
- <summary>PGP and CAcert key signing party- Have your PGP key signed; have yourself assured</summary>
- <description>PGP public key and CAcert certificate identification is based on multiple (the more the better) persons doing an identification check with official identity document(s), like a driver license, passports, identity cards, etc.: the Web of Trustworthy. The Web of Trust is basically a reciprocal process: one has to identify to each other.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/193.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Udo</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>151@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>151</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Policy hacking</pentabarf:title>
- <pentabarf:subtitle>Open Source Lobbying, tips from the trenches</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Policy hacking- Open Source Lobbying, tips from the trenches</summary>
- <description>In 2007 The Netherlands became the first western country to have a national policy on the mandatory use of open standards and preferential use of opensource software in all public sector organisations (government, educations, healthcare ...). Having been involved in the process of creating this policy I will share some of my lesson learned about policy hacking. This talk will be an update of my 2007 CCC-talk about the same subject. Many things have happened since then and there are new tales to be told.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/151.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Arjen Kamphuis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>151@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>151</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Policy hacking</pentabarf:title>
- <pentabarf:subtitle>Open Source Lobbying, tips from the trenches</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Policy hacking- Open Source Lobbying, tips from the trenches</summary>
- <description>In 2007 The Netherlands became the first western country to have a national policy on the mandatory use of open standards and preferential use of opensource software in all public sector organisations (government, educations, healthcare ...). Having been involved in the process of creating this policy I will share some of my lesson learned about policy hacking. This talk will be an update of my 2007 CCC-talk about the same subject. Many things have happened since then and there are new tales to be told.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/151.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Arjen Kamphuis</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>133@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>133</pentabarf:event-id>
- <pentabarf:event-slug>privacy_and_stylometry</pentabarf:event-slug>
- <pentabarf:title>Privacy &amp; Stylometry: Practical Attacks Against Authorship Attribution Techniques</pentabarf:title>
- <pentabarf:subtitle>Protecting your identity through your writing style: how can attacking stylometry improve privacy?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Privacy &amp; Stylometry: Practical Attacks Against Authorship Attribution Techniques- Protecting your identity through your writing style: how can attacking stylometry improve privacy?</summary>
- <description>The use of statistical AI techniques in authorship recognition (or stylometry) has contributed to literary and historical breakthroughs. These successes have led to the use of these techniques in criminal investigations and prosecutions. However, few have studied adversarial attacks, motivated by a desire to protect anonymity and privacy in a variety of scenarios, and their devastating effect on the robustness of existing classification methods. Our research demonstrates how various types of attacks can reduce the effectiveness of stylometric techniques down to the level of random guessing and worse. These results are made more significant by the fact that the experimental subjects were unfamiliar with stylometric techniques, without specialized knowledge in linguistics, and spent little time on the attacks. Current work based on these results that looks deeper into implications of stylometry on privacy and anonymity on the Internet is also discussed.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/133.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Mike Brennan</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>133@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>133</pentabarf:event-id>
- <pentabarf:event-slug>privacy_and_stylometry</pentabarf:event-slug>
- <pentabarf:title>Privacy &amp; Stylometry: Practical Attacks Against Authorship Attribution Techniques</pentabarf:title>
- <pentabarf:subtitle>Protecting your identity through your writing style: how can attacking stylometry improve privacy?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Privacy &amp; Stylometry: Practical Attacks Against Authorship Attribution Techniques- Protecting your identity through your writing style: how can attacking stylometry improve privacy?</summary>
- <description>The use of statistical AI techniques in authorship recognition (or stylometry) has contributed to literary and historical breakthroughs. These successes have led to the use of these techniques in criminal investigations and prosecutions. However, few have studied adversarial attacks, motivated by a desire to protect anonymity and privacy in a variety of scenarios, and their devastating effect on the robustness of existing classification methods. Our research demonstrates how various types of attacks can reduce the effectiveness of stylometric techniques down to the level of random guessing and worse. These results are made more significant by the fact that the experimental subjects were unfamiliar with stylometric techniques, without specialized knowledge in linguistics, and spent little time on the attacks. Current work based on these results that looks deeper into implications of stylometry on privacy and anonymity on the Internet is also discussed.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/133.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Mike Brennan</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>28@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>28</pentabarf:event-id>
- <pentabarf:event-slug>programming_the_cloud</pentabarf:event-slug>
- <pentabarf:title>Programming the cloud</pentabarf:title>
- <pentabarf:subtitle>What will Cloud computing bring</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Programming the cloud- What will Cloud computing bring</summary>
- <description>Cloud computing is rapidly gaining the interest of service providers, programmers and the public as no one wants to miss the new hype. While there are many theories on how the cloud will evolve no real discussion on the programmability has yet taken place. In this talk a programing language named objic is described, that enables programs to run in a distributed manner in the cloud. This is done by creating an object orientated syntax and interpretation environment that can create objects on various distributed locations throughout a network and address them in a scalable, fault tolerant and transparent way. This is followed by a discussion of the problems faced and an outlook into the future. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/28.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Geerd-Dietger Hoffmann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>28@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>28</pentabarf:event-id>
- <pentabarf:event-slug>programming_the_cloud</pentabarf:event-slug>
- <pentabarf:title>Programming the cloud</pentabarf:title>
- <pentabarf:subtitle>What will Cloud computing bring</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Programming the cloud- What will Cloud computing bring</summary>
- <description>Cloud computing is rapidly gaining the interest of service providers, programmers and the public as no one wants to miss the new hype. While there are many theories on how the cloud will evolve no real discussion on the programmability has yet taken place. In this talk a programing language named objic is described, that enables programs to run in a distributed manner in the cloud. This is done by creating an object orientated syntax and interpretation environment that can create objects on various distributed locations throughout a network and address them in a scalable, fault tolerant and transparent way. This is followed by a discussion of the problems faced and an outlook into the future. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/28.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Geerd-Dietger Hoffmann</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>155@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>155</pentabarf:event-id>
- <pentabarf:event-slug>protheses_for_50_USD</pentabarf:event-slug>
- <pentabarf:title>Protheses for $50 instead of $250.000</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Protheses for $50 instead of $250.000</summary>
- <description>Protheses voor $40 ipv $250.000
-
-In May 2009 the House of Natural Fiber (HONF) from Indonesia was visiting the Netherlands. Their aim: to build cheap leg protheses. They visidet Fablab Amsterdam to build up a comprehensive knowledge base around making protheses and to make contact with experts in the field. Now they are back in Indonesia and applying their knowledge. While a high-tech prothese costs 200.000 Euro and a standard prothese is available for 10.000, the cheapest ones cost $ 150. These are produced and fitted in one day only by Jaipurfoot. Yet HONF's protheses are going to cost a mere $ 50.
-
-We will present how HONF have built up their knowledge, what the most relevant experiences were for them to take away. And we will report live from Indonesia how the project proceeds. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/155.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Peter Troxler</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>155@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>155</pentabarf:event-id>
- <pentabarf:event-slug>protheses_for_50_USD</pentabarf:event-slug>
- <pentabarf:title>Protheses for $50 instead of $250.000</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T140000</dtstart>
- <dtend>20090813T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Protheses for $50 instead of $250.000</summary>
- <description>Protheses voor $40 ipv $250.000
-
-In May 2009 the House of Natural Fiber (HONF) from Indonesia was visiting the Netherlands. Their aim: to build cheap leg protheses. They visidet Fablab Amsterdam to build up a comprehensive knowledge base around making protheses and to make contact with experts in the field. Now they are back in Indonesia and applying their knowledge. While a high-tech prothese costs 200.000 Euro and a standard prothese is available for 10.000, the cheapest ones cost $ 150. These are produced and fitted in one day only by Jaipurfoot. Yet HONF's protheses are going to cost a mere $ 50.
-
-We will present how HONF have built up their knowledge, what the most relevant experiences were for them to take away. And we will report live from Indonesia how the project proceeds. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/155.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Peter Troxler</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>89@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>89</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Public transport SMS ticket hacking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Public transport SMS ticket hacking</summary>
- <description>The primary aim of this presentation is to show a serious inherent vulnerability in the public transport SMS tickets system widely used in many big cities. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/89.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Pavol Luptak</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>89@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>89</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Public transport SMS ticket hacking</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Public transport SMS ticket hacking</summary>
- <description>The primary aim of this presentation is to show a serious inherent vulnerability in the public transport SMS tickets system widely used in many big cities. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/89.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Pavol Luptak</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>157@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>157</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Realizing the RFID Guardian</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Realizing the RFID Guardian</summary>
- <description>The RFID Guardian Project is an initiative to put practical open-source HW/SW tools for RFID Security and Privacy into the hands of security consultants and the general public alike. This talk will discuss Radio Frequency Identification, its security and privacy implications, and will provide the newest information about Version 4 of the RFID Guardian, which we intend to launch soon to the general public.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/157.en.html</url>
- <location>Monty Hall</location>
- <attendee>Serge Keyser</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>157@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>157</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Realizing the RFID Guardian</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T130000</dtstart>
- <dtend>20090816T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Realizing the RFID Guardian</summary>
- <description>The RFID Guardian Project is an initiative to put practical open-source HW/SW tools for RFID Security and Privacy into the hands of security consultants and the general public alike. This talk will discuss Radio Frequency Identification, its security and privacy implications, and will provide the newest information about Version 4 of the RFID Guardian, which we intend to launch soon to the general public.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/157.en.html</url>
- <location>Monty Hall</location>
- <attendee>Serge Keyser</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>161@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>161</pentabarf:event-id>
- <pentabarf:event-slug>yro2</pentabarf:event-slug>
- <pentabarf:title>Relaunch Bits of Freedom</pentabarf:title>
- <pentabarf:subtitle>How have digital rights been affected in The Netherlands since 2006? How will Bits of Freedom defend these rights?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Relaunch Bits of Freedom- How have digital rights been affected in The Netherlands since 2006? How will Bits of Freedom defend these rights?</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/161.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>161@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>161</pentabarf:event-id>
- <pentabarf:event-slug>yro2</pentabarf:event-slug>
- <pentabarf:title>Relaunch Bits of Freedom</pentabarf:title>
- <pentabarf:subtitle>How have digital rights been affected in The Netherlands since 2006? How will Bits of Freedom defend these rights?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Relaunch Bits of Freedom- How have digital rights been affected in The Netherlands since 2006? How will Bits of Freedom defend these rights?</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/161.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Ot van Daalen</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>207@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>207</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Remote Barcode Injection</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Remote Barcode Injection</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/207.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>jbe</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>207@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>207</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Remote Barcode Injection</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T120000</dtstart>
- <dtend>20090814T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Remote Barcode Injection</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/207.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>jbe</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>35@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>35</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Results of a Security Assessment of Common Implementation Strategies of the TCP and IP Protocols</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Results of a Security Assessment of Common Implementation Strategies of the TCP and IP Protocols</summary>
- <description>Fernando Gont will present the results of a security assessment of the TCP and IP protocols carried out on behalf of the UK CPNI (United Kingdom's Centre for the Protection of National Infrastructure). He will explain the security implications arising from the protocol specifications themselves, and from a number of implementation strategies followed by most of the popular TCP/IP stacks, and will also discuss the new insights that were gained as a result of this project that can help to mitigate the aforementioned issues. Finally, Fernando will provide an overview of the ongoing efforts at the IETF community to incorporate these insights into the corresponding protocol specifications and the ongoing efforts in the vendor community to incorporate these recommendations into popular implementations of the protocols.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/35.en.html</url>
- <location>Monty Hall</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>35@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>35</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Results of a Security Assessment of Common Implementation Strategies of the TCP and IP Protocols</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T210000</dtstart>
- <dtend>20090815T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Results of a Security Assessment of Common Implementation Strategies of the TCP and IP Protocols</summary>
- <description>Fernando Gont will present the results of a security assessment of the TCP and IP protocols carried out on behalf of the UK CPNI (United Kingdom's Centre for the Protection of National Infrastructure). He will explain the security implications arising from the protocol specifications themselves, and from a number of implementation strategies followed by most of the popular TCP/IP stacks, and will also discuss the new insights that were gained as a result of this project that can help to mitigate the aforementioned issues. Finally, Fernando will provide an overview of the ongoing efforts at the IETF community to incorporate these insights into the corresponding protocol specifications and the ongoing efforts in the vendor community to incorporate these recommendations into popular implementations of the protocols.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/35.en.html</url>
- <location>Monty Hall</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>46@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>46</pentabarf:event-id>
- <pentabarf:event-slug>rfid_sniffer_workshop</pentabarf:event-slug>
- <pentabarf:title>RFID sniffer workshop</pentabarf:title>
- <pentabarf:subtitle>Assemble your own RFID sniffer and find RFID tags in your wallet</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>04H00M00S</duration>
- <summary>RFID sniffer workshop- Assemble your own RFID sniffer and find RFID tags in your wallet</summary>
- <description>Assemble your own RFID sniffer and find RFID tags in your wallet</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/46.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Marc Boon</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>46@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>46</pentabarf:event-id>
- <pentabarf:event-slug>rfid_sniffer_workshop</pentabarf:event-slug>
- <pentabarf:title>RFID sniffer workshop</pentabarf:title>
- <pentabarf:subtitle>Assemble your own RFID sniffer and find RFID tags in your wallet</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>04H00M00S</duration>
- <summary>RFID sniffer workshop- Assemble your own RFID sniffer and find RFID tags in your wallet</summary>
- <description>Assemble your own RFID sniffer and find RFID tags in your wallet</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/46.en.html</url>
- <location>Bike-shed Red</location>
- <attendee>Marc Boon</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>163@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>163</pentabarf:event-id>
- <pentabarf:event-slug>rootkits</pentabarf:event-slug>
- <pentabarf:title>Rootkits are awesome</pentabarf:title>
- <pentabarf:subtitle>Insider Threat for Fun and Profit</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Rootkits are awesome- Insider Threat for Fun and Profit</summary>
- <description>Rootkits are awesome: Insider Threat for Fun and Profit
-Addressing the insider threat is now rightly recognised as playing a crucial element in improving the security posture of organisations and preventing all kinds of embarrassment. Recent years have seen a growth in all manner of vendors promising panaceas to address ordinary user activities, but what exactly are the solutions offered? In a lot of instances, legitimate rootkits. This talk examines the current state of the insider threat marketplace, the technical solutions to the issues presented, and an actual analysis of user activities in RL and how they may well negate the the promises of vendors and the expectations of security minded organisations.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/163.en.html</url>
- <location>Monty Hall</location>
- <attendee>Mike Kemp</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>163@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>163</pentabarf:event-id>
- <pentabarf:event-slug>rootkits</pentabarf:event-slug>
- <pentabarf:title>Rootkits are awesome</pentabarf:title>
- <pentabarf:subtitle>Insider Threat for Fun and Profit</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T170000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Rootkits are awesome- Insider Threat for Fun and Profit</summary>
- <description>Rootkits are awesome: Insider Threat for Fun and Profit
-Addressing the insider threat is now rightly recognised as playing a crucial element in improving the security posture of organisations and preventing all kinds of embarrassment. Recent years have seen a growth in all manner of vendors promising panaceas to address ordinary user activities, but what exactly are the solutions offered? In a lot of instances, legitimate rootkits. This talk examines the current state of the insider threat marketplace, the technical solutions to the issues presented, and an actual analysis of user activities in RL and how they may well negate the the promises of vendors and the expectations of security minded organisations.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/163.en.html</url>
- <location>Monty Hall</location>
- <attendee>Mike Kemp</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>169@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>169</pentabarf:event-id>
- <pentabarf:event-slug>runtime_osx_kernel_patching</pentabarf:event-slug>
- <pentabarf:title>Runtime Kernel Patching on Mac OS X</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Runtime Kernel Patching on Mac OS X</summary>
- <description>This talk will focus on rootkit development on Mac OS X. It will cover the basics as well as a couple of (somewhat) new tricks.
-We will also talk about rootkit detection on Mac OS X.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/169.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Bosse Eriksson</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>169@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>169</pentabarf:event-id>
- <pentabarf:event-slug>runtime_osx_kernel_patching</pentabarf:event-slug>
- <pentabarf:title>Runtime Kernel Patching on Mac OS X</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Runtime Kernel Patching on Mac OS X</summary>
- <description>This talk will focus on rootkit development on Mac OS X. It will cover the basics as well as a couple of (somewhat) new tricks.
-We will also talk about rootkit detection on Mac OS X.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/169.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Bosse Eriksson</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>91@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>91</pentabarf:event-id>
- <pentabarf:event-slug>searchengine_censorship</pentabarf:event-slug>
- <pentabarf:title>Search engines and censorship</pentabarf:title>
- <pentabarf:subtitle>The law and politics of the digital horizon</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Search engines and censorship- The law and politics of the digital horizon</summary>
- <description>Search engines and censorship: the law and politics of the digital horizon
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/91.en.html</url>
- <location>Monty Hall</location>
- <attendee>Joris van Hoboken</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>91@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>91</pentabarf:event-id>
- <pentabarf:event-slug>searchengine_censorship</pentabarf:event-slug>
- <pentabarf:title>Search engines and censorship</pentabarf:title>
- <pentabarf:subtitle>The law and politics of the digital horizon</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T200000</dtstart>
- <dtend>20090813T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Search engines and censorship- The law and politics of the digital horizon</summary>
- <description>Search engines and censorship: the law and politics of the digital horizon
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/91.en.html</url>
- <location>Monty Hall</location>
- <attendee>Joris van Hoboken</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>173@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>173</pentabarf:event-id>
- <pentabarf:event-slug>securing_networks</pentabarf:event-slug>
- <pentabarf:title>Securing networks from an ISP perspective</pentabarf:title>
- <pentabarf:subtitle>The role of the JANET CSIRT</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Securing networks from an ISP perspective- The role of the JANET CSIRT</summary>
- <description>As an ISP attempting to secure a large network with 18 million users and 40Gbs link speeds is a challenging task, this talk will discuss how we attempt to make the JANET network a safer place for its users and the Internet.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/173.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Bradley Freeman</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>173@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>173</pentabarf:event-id>
- <pentabarf:event-slug>securing_networks</pentabarf:event-slug>
- <pentabarf:title>Securing networks from an ISP perspective</pentabarf:title>
- <pentabarf:subtitle>The role of the JANET CSIRT</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Securing networks from an ISP perspective- The role of the JANET CSIRT</summary>
- <description>As an ISP attempting to secure a large network with 18 million users and 40Gbs link speeds is a challenging task, this talk will discuss how we attempt to make the JANET network a safer place for its users and the Internet.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/173.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Bradley Freeman</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>167@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>167</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Side channel analysis and fault injection</pentabarf:title>
- <pentabarf:subtitle>Is that a smart card in your pocket?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Side channel analysis and fault injection- Is that a smart card in your pocket?</summary>
- <description>This talk explores the world of side channel analysis and fault injection on smart cards. The basics of side channel analysis are explained and it is demonstrated how a differential power attack works on a (not state of the art) smartcard. Furthermore, I will explain how fault injection is performed using a simple flashlight (and an advanced laser setup).
-
-This is a Side channel '101' lecture and should be interesting for anyone with an interest in hardware hacking, crypto and security.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/167.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jasper van Woudenberg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>167@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>167</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Side channel analysis and fault injection</pentabarf:title>
- <pentabarf:subtitle>Is that a smart card in your pocket?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T150000</dtstart>
- <dtend>20090814T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>Side channel analysis and fault injection- Is that a smart card in your pocket?</summary>
- <description>This talk explores the world of side channel analysis and fault injection on smart cards. The basics of side channel analysis are explained and it is demonstrated how a differential power attack works on a (not state of the art) smartcard. Furthermore, I will explain how fault injection is performed using a simple flashlight (and an advanced laser setup).
-
-This is a Side channel '101' lecture and should be interesting for anyone with an interest in hardware hacking, crypto and security.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/167.en.html</url>
- <location>Monty Hall</location>
- <attendee>Jasper van Woudenberg</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>132@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>132</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Side channel analysis on embedded systems</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Side channel analysis on embedded systems</summary>
- <description>The presentation briefly introduces the state of the art analysis techniques used on smart cards today. Further, we define the types of embedded systems that these attacks may apply to. Then we illustrate the differences and commonalities of side channel analysis on smart cards and embedded systems.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/132.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Job de Haas</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>132@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>132</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Side channel analysis on embedded systems</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T130000</dtstart>
- <dtend>20090815T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>Side channel analysis on embedded systems</summary>
- <description>The presentation briefly introduces the state of the art analysis techniques used on smart cards today. Further, we define the types of embedded systems that these attacks may apply to. Then we illustrate the differences and commonalities of side channel analysis on smart cards and embedded systems.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/132.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Job de Haas</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>139@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>139</pentabarf:event-id>
- <pentabarf:event-slug>smallsister_workshop</pentabarf:event-slug>
- <pentabarf:title>SmallSister or how to defeat data retention</pentabarf:title>
- <pentabarf:subtitle>Circumventing bureaucrats</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>SmallSister or how to defeat data retention- Circumventing bureaucrats</summary>
- <description>Data retention is one of the biggest dangers of free speech and a free society. Now there is software that at least secures e-mail. The best of all: it's easy to use and fully functional. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/139.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Brenno de Winter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>139@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>139</pentabarf:event-id>
- <pentabarf:event-slug>smallsister_workshop</pentabarf:event-slug>
- <pentabarf:title>SmallSister or how to defeat data retention</pentabarf:title>
- <pentabarf:subtitle>Circumventing bureaucrats</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T130000</dtstart>
- <dtend>20090814T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>SmallSister or how to defeat data retention- Circumventing bureaucrats</summary>
- <description>Data retention is one of the biggest dangers of free speech and a free society. Now there is software that at least secures e-mail. The best of all: it's easy to use and fully functional. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/139.en.html</url>
- <location>Bike-shed Green</location>
- <attendee>Brenno de Winter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>128@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>128</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Sniffing cable modems</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Sniffing cable modems</summary>
- <description>Cable modems are widely used these days for internet connections or other applications. This talk gives a detailed overview of this mean of communication with a focus on its security. Additionally, I'll show how network forensics can easily be used with this media along with a few new attacks which can now be implemented thanks to the information being gathered.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/128.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Guy Martin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>128@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>128</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Sniffing cable modems</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T140000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>01H00M00S</duration>
- <summary>Sniffing cable modems</summary>
- <description>Cable modems are widely used these days for internet connections or other applications. This talk gives a detailed overview of this mean of communication with a focus on its security. Additionally, I'll show how network forensics can easily be used with this media along with a few new attacks which can now be implemented thanks to the information being gathered.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/128.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Guy Martin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>51@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>51</pentabarf:event-id>
- <pentabarf:event-slug>statistics_and_law</pentabarf:event-slug>
- <pentabarf:title>Statistics and the Law</pentabarf:title>
- <pentabarf:subtitle>The case of Lucia de B., alleged serial killer, and others.</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Statistics and the Law- The case of Lucia de B., alleged serial killer, and others.</summary>
- <description>The case of Lucia de B. is a highly controversial legal case in the
-Netherlands, in which a statistically significant correlation between the
-presence of a particular nurse and the occurrence of suspicious medical
-incidents on her ward played a central role in getting her a life
-conviction for serial murder. However, recent re-investigation of the
-meagre medical evidence for wrong-doing, and re-investigation of the
-statistics, makes it very plausible that no murders were committed at all,
-by anybody. The Dutch supreme court has recently overturned the conviction
-and a re-trial has started start.
-
-However a motto of the Dutch legal system could be "learning represents the possibility of failure and must thus be avoided if possible". Though innocence was obvious (to the well informed), the conviction was legally speaking watertight and irreversible. Yet a small band of "terrorists" (as they were characterized in legal magazines) managed to convince the legal system that this had to change, and change it did. How did they do it? Hacking into a complex human system... use it to make it do the work for you.
-
-Slides of the talk: http://www.math.leidenuniv.nl/~gill/Lucia.pdf</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/51.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Richard Gill</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>51@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>51</pentabarf:event-id>
- <pentabarf:event-slug>statistics_and_law</pentabarf:event-slug>
- <pentabarf:title>Statistics and the Law</pentabarf:title>
- <pentabarf:subtitle>The case of Lucia de B., alleged serial killer, and others.</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Statistics and the Law- The case of Lucia de B., alleged serial killer, and others.</summary>
- <description>The case of Lucia de B. is a highly controversial legal case in the
-Netherlands, in which a statistically significant correlation between the
-presence of a particular nurse and the occurrence of suspicious medical
-incidents on her ward played a central role in getting her a life
-conviction for serial murder. However, recent re-investigation of the
-meagre medical evidence for wrong-doing, and re-investigation of the
-statistics, makes it very plausible that no murders were committed at all,
-by anybody. The Dutch supreme court has recently overturned the conviction
-and a re-trial has started start.
-
-However a motto of the Dutch legal system could be "learning represents the possibility of failure and must thus be avoided if possible". Though innocence was obvious (to the well informed), the conviction was legally speaking watertight and irreversible. Yet a small band of "terrorists" (as they were characterized in legal magazines) managed to convince the legal system that this had to change, and change it did. How did they do it? Hacking into a complex human system... use it to make it do the work for you.
-
-Slides of the talk: http://www.math.leidenuniv.nl/~gill/Lucia.pdf</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/51.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Richard Gill</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>86@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>86</pentabarf:event-id>
- <pentabarf:event-slug>stoned_bootkit</pentabarf:event-slug>
- <pentabarf:title>Stoned Bootkit</pentabarf:title>
- <pentabarf:subtitle>The Rise of MBR Rootkits &amp; Bootkits in the Wild</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Stoned Bootkit- The Rise of MBR Rootkits &amp; Bootkits in the Wild</summary>
- <description>Stoned Bootkit is a new Windows bootkit. It is loaded before Windows starts and is memory resident up to the Windows kernel. Thus Stoned is executed beside the Windows kernel and has full access to the entire system. It attacks all Windows versions including XP, Vista and 7. It has exciting features like integrated file system drivers, automatic Windows pwning, plugins, boot applications, and much much more. Inside it is a small operating system! It finally goes back to the roots. So in this way,
-
-Your PC is now Stoned! ..again</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/86.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Peter Kleissner</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>86@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>86</pentabarf:event-id>
- <pentabarf:event-slug>stoned_bootkit</pentabarf:event-slug>
- <pentabarf:title>Stoned Bootkit</pentabarf:title>
- <pentabarf:subtitle>The Rise of MBR Rootkits &amp; Bootkits in the Wild</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>Stoned Bootkit- The Rise of MBR Rootkits &amp; Bootkits in the Wild</summary>
- <description>Stoned Bootkit is a new Windows bootkit. It is loaded before Windows starts and is memory resident up to the Windows kernel. Thus Stoned is executed beside the Windows kernel and has full access to the entire system. It attacks all Windows versions including XP, Vista and 7. It has exciting features like integrated file system drivers, automatic Windows pwning, plugins, boot applications, and much much more. Inside it is a small operating system! It finally goes back to the roots. So in this way,
-
-Your PC is now Stoned! ..again</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/86.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Peter Kleissner</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>174@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>174</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Surveillance Self-Defense</pentabarf:title>
- <pentabarf:subtitle>Teaching the community to defend itself against surveillance</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Surveillance Self-Defense- Teaching the community to defend itself against surveillance</summary>
- <description>EFF created the Surveillance Self-Defense project (https://ssd.eff.org) to teach individuals and organisations within the U.S. about legal and technological strategies which can be used to minimise surveillance threats from US government actors. In this talk, we will discuss the lessons from this project and how to adapt or extend them to the European context.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/174.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>174@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>174</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Surveillance Self-Defense</pentabarf:title>
- <pentabarf:subtitle>Teaching the community to defend itself against surveillance</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Surveillance Self-Defense- Teaching the community to defend itself against surveillance</summary>
- <description>EFF created the Surveillance Self-Defense project (https://ssd.eff.org) to teach individuals and organisations within the U.S. about legal and technological strategies which can be used to minimise surveillance threats from US government actors. In this talk, we will discuss the lessons from this project and how to adapt or extend them to the European context.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/174.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>171@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>171</pentabarf:event-id>
- <pentabarf:event-slug>internetz_are_pwned</pentabarf:event-slug>
- <pentabarf:title>Teh Internetz are pwned</pentabarf:title>
- <pentabarf:subtitle>How I learned to stop worrying and love teh Internetz</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Teh Internetz are pwned- How I learned to stop worrying and love teh Internetz</summary>
- <description>Working as an operational Security Officer at an ISP for the better part of a decade brings with it many adventures, challenges, laughs and tears. This talk will cover some of the most recent issues to be causing hair loss to someone who can't afford it.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/171.en.html</url>
- <location>Monty Hall</location>
- <attendee>Scott McIntyre</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>171@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>171</pentabarf:event-id>
- <pentabarf:event-slug>internetz_are_pwned</pentabarf:event-slug>
- <pentabarf:title>Teh Internetz are pwned</pentabarf:title>
- <pentabarf:subtitle>How I learned to stop worrying and love teh Internetz</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>Teh Internetz are pwned- How I learned to stop worrying and love teh Internetz</summary>
- <description>Working as an operational Security Officer at an ISP for the better part of a decade brings with it many adventures, challenges, laughs and tears. This talk will cover some of the most recent issues to be causing hair loss to someone who can't afford it.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/171.en.html</url>
- <location>Monty Hall</location>
- <attendee>Scott McIntyre</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>114@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>114</pentabarf:event-id>
- <pentabarf:event-slug>tempest</pentabarf:event-slug>
- <pentabarf:title>TEMPEST for the casual election hacker</pentabarf:title>
- <pentabarf:subtitle>The 80s are calling and want their sploits back</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>TEMPEST for the casual election hacker- The 80s are calling and want their sploits back</summary>
- <description>Yes, German NEDAPs have TEMPEST issues too, and we have proof.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/114.en.html</url>
- <location>Monty Hall</location>
- <attendee>Andreas Bogk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>114@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>114</pentabarf:event-id>
- <pentabarf:event-slug>tempest</pentabarf:event-slug>
- <pentabarf:title>TEMPEST for the casual election hacker</pentabarf:title>
- <pentabarf:subtitle>The 80s are calling and want their sploits back</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T160000</dtstart>
- <dtend>20090814T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>TEMPEST for the casual election hacker- The 80s are calling and want their sploits back</summary>
- <description>Yes, German NEDAPs have TEMPEST issues too, and we have proof.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/114.en.html</url>
- <location>Monty Hall</location>
- <attendee>Andreas Bogk</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>156@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>156</pentabarf:event-id>
- <pentabarf:event-slug>censoring_mob</pentabarf:event-slug>
- <pentabarf:title>The Censoring Mob</pentabarf:title>
- <pentabarf:subtitle>How Social Media Destroy Freedom of Expression - And Why That Might Be a Good Thing</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Censoring Mob- How Social Media Destroy Freedom of Expression - And Why That Might Be a Good Thing</summary>
- <description>Social media is supposed to foster free speech by creating user-friendly web applications that let people talk, share ideas, and organize online. Instead it has created a new form of censorship, led by mobs who flag content as "inappropriate" to remove it, or who troll their victims out of existence. This talk will explore how these mobs work, what their politics are, and whether we should organize to stop them - or join them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/156.en.html</url>
- <location>Monty Hall</location>
- <attendee>Annalee Newitz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>156@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>156</pentabarf:event-id>
- <pentabarf:event-slug>censoring_mob</pentabarf:event-slug>
- <pentabarf:title>The Censoring Mob</pentabarf:title>
- <pentabarf:subtitle>How Social Media Destroy Freedom of Expression - And Why That Might Be a Good Thing</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T220000</dtstart>
- <dtend>20090813T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Censoring Mob- How Social Media Destroy Freedom of Expression - And Why That Might Be a Good Thing</summary>
- <description>Social media is supposed to foster free speech by creating user-friendly web applications that let people talk, share ideas, and organize online. Instead it has created a new form of censorship, led by mobs who flag content as "inappropriate" to remove it, or who troll their victims out of existence. This talk will explore how these mobs work, what their politics are, and whether we should organize to stop them - or join them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/156.en.html</url>
- <location>Monty Hall</location>
- <attendee>Annalee Newitz</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>62@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>62</pentabarf:event-id>
- <pentabarf:event-slug>ethics_of_piracy</pentabarf:event-slug>
- <pentabarf:title>The Complex Ethics of Piracy</pentabarf:title>
- <pentabarf:subtitle>Theft, civil disobedience, or something else?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Complex Ethics of Piracy- Theft, civil disobedience, or something else?</summary>
- <description>The Complex Ethics of Piracy
-
-This talk aims to replace the "piracy is good" vs "piracy is theft" debate with a more nuanced understanding. It will investigate when piracy is selfish; when it is civil disobedience; whether it is ever constructive for cultural industries, or whether it is ever, as copyright holders argue, "theft".
-
-I will conclude that each of these things is *sometimes* true about piracy, and that simple views are inadequate for understanding the ethical dimension of copyright infringement. Both pirates and copyright industries need to develop more subtle understandings of the morality of file sharing.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/62.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>62@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>62</pentabarf:event-id>
- <pentabarf:event-slug>ethics_of_piracy</pentabarf:event-slug>
- <pentabarf:title>The Complex Ethics of Piracy</pentabarf:title>
- <pentabarf:subtitle>Theft, civil disobedience, or something else?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Complex Ethics of Piracy- Theft, civil disobedience, or something else?</summary>
- <description>The Complex Ethics of Piracy
-
-This talk aims to replace the "piracy is good" vs "piracy is theft" debate with a more nuanced understanding. It will investigate when piracy is selfish; when it is civil disobedience; whether it is ever constructive for cultural industries, or whether it is ever, as copyright holders argue, "theft".
-
-I will conclude that each of these things is *sometimes* true about piracy, and that simple views are inadequate for understanding the ethical dimension of copyright infringement. Both pirates and copyright industries need to develop more subtle understandings of the morality of file sharing.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/62.en.html</url>
- <location>Monty Hall</location>
- <attendee>Peter Eckersley</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>95@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>95</pentabarf:event-id>
- <pentabarf:event-slug>carrier_grade_nat</pentabarf:event-slug>
- <pentabarf:title>The dangers (and merits) of carrier grade nat</pentabarf:title>
- <pentabarf:subtitle>Living in the twilight zone</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>The dangers (and merits) of carrier grade nat- Living in the twilight zone</summary>
- <description>As the point of IPv4 address depletion comes nearer it's getting clear the world won't be ready for large scale IPv6 deployment, at the same time expectations are IPv4 will be around for the next 40 years. To circumvent the problems this introduces large scale translation needs to take place to have the old world connect to the new world and make sure enough addresses are available. All these solutions introduce large scale NAT deployments or carrier grade nats. This will introduce the basic mechanisms used, after which you as the audience is inivted to comment on it. Hopefully sparking a discussion about the good anf bad things of these concepts and things people should become aware of.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/95.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Marco Hogewoning</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>95@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>95</pentabarf:event-id>
- <pentabarf:event-slug>carrier_grade_nat</pentabarf:event-slug>
- <pentabarf:title>The dangers (and merits) of carrier grade nat</pentabarf:title>
- <pentabarf:subtitle>Living in the twilight zone</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>The dangers (and merits) of carrier grade nat- Living in the twilight zone</summary>
- <description>As the point of IPv4 address depletion comes nearer it's getting clear the world won't be ready for large scale IPv6 deployment, at the same time expectations are IPv4 will be around for the next 40 years. To circumvent the problems this introduces large scale translation needs to take place to have the old world connect to the new world and make sure enough addresses are available. All these solutions introduce large scale NAT deployments or carrier grade nats. This will introduce the basic mechanisms used, after which you as the audience is inivted to comment on it. Hopefully sparking a discussion about the good anf bad things of these concepts and things people should become aware of.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/95.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Marco Hogewoning</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>120@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>120</pentabarf:event-id>
- <pentabarf:event-slug>jtag_howto</pentabarf:event-slug>
- <pentabarf:title>The Embedded JTAG interface HOWTO</pentabarf:title>
- <pentabarf:subtitle>What's a JTAG interface and how to find it?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Embedded JTAG interface HOWTO- What's a JTAG interface and how to find it?</summary>
- <description>This presentation is all about the JTAG interface, commonly found in embedded devices such as (wireless) routers, satellite receivers and coffee machines. It will start with a trip down memory lane: the intended use of the JTAG interface, and why you would like to have access to it. The story continues with a guide on how to find it - visually and electronically. the round-up is how chip manufacturers like to prevent us from getting access.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/120.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Gerrit van der Bij</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>120@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>120</pentabarf:event-id>
- <pentabarf:event-slug>jtag_howto</pentabarf:event-slug>
- <pentabarf:title>The Embedded JTAG interface HOWTO</pentabarf:title>
- <pentabarf:subtitle>What's a JTAG interface and how to find it?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T160000</dtstart>
- <dtend>20090813T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Embedded JTAG interface HOWTO- What's a JTAG interface and how to find it?</summary>
- <description>This presentation is all about the JTAG interface, commonly found in embedded devices such as (wireless) routers, satellite receivers and coffee machines. It will start with a trip down memory lane: the intended use of the JTAG interface, and why you would like to have access to it. The story continues with a guide on how to find it - visually and electronically. the round-up is how chip manufacturers like to prevent us from getting access.
-
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/120.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Gerrit van der Bij</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>7@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>7</pentabarf:event-id>
- <pentabarf:event-slug>as400_introduction</pentabarf:event-slug>
- <pentabarf:title>The IBM AS/400</pentabarf:title>
- <pentabarf:subtitle>A technical introduction</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>The IBM AS/400- A technical introduction</summary>
- <description>This talk is intended for people who say "what the hell is an AS/400, what's so special about it / how does it work?".</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/7.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Tom van Looy</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>7@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>7</pentabarf:event-id>
- <pentabarf:event-slug>as400_introduction</pentabarf:event-slug>
- <pentabarf:title>The IBM AS/400</pentabarf:title>
- <pentabarf:subtitle>A technical introduction</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>The IBM AS/400- A technical introduction</summary>
- <description>This talk is intended for people who say "what the hell is an AS/400, what's so special about it / how does it work?".</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/7.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Tom van Looy</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>134@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>134</pentabarf:event-id>
- <pentabarf:event-slug>power_of_decentralization</pentabarf:event-slug>
- <pentabarf:title>The power of decentralization</pentabarf:title>
- <pentabarf:subtitle>Agent-based simulation of a decentralized power network</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>The power of decentralization- Agent-based simulation of a decentralized power network</summary>
- <description>MADMAX AGAINST THE POWER OF DECENTRALIZATION
-============================================
-
-In a world where oil is scarce, violence, chaos and desperation rein.
-But what about our world without power? Electricity has become vital
-for all these appliances that make our daily life so enjoyable. Our
-network, our tellies our fridges and freezers are as dependent on
-their power supply that we are on them. In this paper, or should we
-say in this fiction note, we investigate how a citizen based
-decentralized power system could work and how an auction based bidding
-system could insentivize people to switch off their devices so that
-others, more eager to consume, could benefit from their spare capacity.
-Would the theory of auction, combined with the next generation of micro
-power sources, restore order in a place where scarcity would otherwise
-prevail?
-
-On a more serious tone, we propose to first summarize what decentralized
-power means today. We them bring the existing technology to a next hypothetical step
-where sophisticated appliances are able to communicate with an electronic exchange
-to make deals, confronting demand with offer.
-
-In order to study such a system, we collect realistic data and build a
-simulator where households are equiped with solar panels, micro-turbines and
-consumption devices that can potentially postpone or cancel their activity
-on the basis of a utility function that is tuned by household members to suit
-their need. The added flexibility is twofold. First, an added power capacity
-is available due to the endogenous power supply available to the next generation
-houses. Secondly, as users can tailor their activities, the aggregated
-consumption pattern is smoothed out potentially leaving room for added efficiency.
-
-The contribution of this research is to shed the light on the quantitative figures
-that make up such a network. What amount of flexibility and more crucially how
-different should the utility functions be to flatten out the consumption
-pattern so typical of our current system?
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/134.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Laurent de Wolf</attendee>
- <attendee>Vincent Guffens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>134@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>134</pentabarf:event-id>
- <pentabarf:event-slug>power_of_decentralization</pentabarf:event-slug>
- <pentabarf:title>The power of decentralization</pentabarf:title>
- <pentabarf:subtitle>Agent-based simulation of a decentralized power network</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T160000</dtstart>
- <dtend>20090815T170000</dtend>
- <duration>01H00M00S</duration>
- <summary>The power of decentralization- Agent-based simulation of a decentralized power network</summary>
- <description>MADMAX AGAINST THE POWER OF DECENTRALIZATION
-============================================
-
-In a world where oil is scarce, violence, chaos and desperation rein.
-But what about our world without power? Electricity has become vital
-for all these appliances that make our daily life so enjoyable. Our
-network, our tellies our fridges and freezers are as dependent on
-their power supply that we are on them. In this paper, or should we
-say in this fiction note, we investigate how a citizen based
-decentralized power system could work and how an auction based bidding
-system could insentivize people to switch off their devices so that
-others, more eager to consume, could benefit from their spare capacity.
-Would the theory of auction, combined with the next generation of micro
-power sources, restore order in a place where scarcity would otherwise
-prevail?
-
-On a more serious tone, we propose to first summarize what decentralized
-power means today. We them bring the existing technology to a next hypothetical step
-where sophisticated appliances are able to communicate with an electronic exchange
-to make deals, confronting demand with offer.
-
-In order to study such a system, we collect realistic data and build a
-simulator where households are equiped with solar panels, micro-turbines and
-consumption devices that can potentially postpone or cancel their activity
-on the basis of a utility function that is tuned by household members to suit
-their need. The added flexibility is twofold. First, an added power capacity
-is available due to the endogenous power supply available to the next generation
-houses. Secondly, as users can tailor their activities, the aggregated
-consumption pattern is smoothed out potentially leaving room for added efficiency.
-
-The contribution of this research is to shed the light on the quantitative figures
-that make up such a network. What amount of flexibility and more crucially how
-different should the utility functions be to flatten out the consumption
-pattern so typical of our current system?
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/134.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Laurent de Wolf</attendee>
- <attendee>Vincent Guffens</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>56@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>56</pentabarf:event-id>
- <pentabarf:event-slug>cartoon_quizz</pentabarf:event-slug>
- <pentabarf:title>The Super Awesome Cartoon Quizz 2009</pentabarf:title>
- <pentabarf:subtitle>Test your knowledge on cartoons from past and present</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Super Awesome Cartoon Quizz 2009- Test your knowledge on cartoons from past and present</summary>
- <description>Quiz with a lot of questions about all sorts of cartoons. Both old and new cartoons will be tested. There are modest prizes to win.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/56.en.html</url>
- <location>Monty Hall</location>
- <attendee>Elger 'Stitch' Jonker</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>56@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>56</pentabarf:event-id>
- <pentabarf:event-slug>cartoon_quizz</pentabarf:event-slug>
- <pentabarf:title>The Super Awesome Cartoon Quizz 2009</pentabarf:title>
- <pentabarf:subtitle>Test your knowledge on cartoons from past and present</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T220000</dtstart>
- <dtend>20090814T230000</dtend>
- <duration>01H00M00S</duration>
- <summary>The Super Awesome Cartoon Quizz 2009- Test your knowledge on cartoons from past and present</summary>
- <description>Quiz with a lot of questions about all sorts of cartoons. Both old and new cartoons will be tested. There are modest prizes to win.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/56.en.html</url>
- <location>Monty Hall</location>
- <attendee>Elger 'Stitch' Jonker</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>40@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>40</pentabarf:event-id>
- <pentabarf:event-slug>zeus_evolution</pentabarf:event-slug>
- <pentabarf:title>The ZeuS evolution</pentabarf:title>
- <pentabarf:subtitle>A malware case study..</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>The ZeuS evolution- A malware case study..</summary>
- <description>The talk is intended to give an insight view of todays malware - major players, behavior and institutions involved. The focus will be on one of the main malware family we face today: Zeus / Zbot / Wsnpoem.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/40.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Clemens Kurtenbach</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>40@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>40</pentabarf:event-id>
- <pentabarf:event-slug>zeus_evolution</pentabarf:event-slug>
- <pentabarf:title>The ZeuS evolution</pentabarf:title>
- <pentabarf:subtitle>A malware case study..</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T210000</dtstart>
- <dtend>20090813T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>The ZeuS evolution- A malware case study..</summary>
- <description>The talk is intended to give an insight view of todays malware - major players, behavior and institutions involved. The focus will be on one of the main malware family we face today: Zeus / Zbot / Wsnpoem.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/40.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Clemens Kurtenbach</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>178@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>178</pentabarf:event-id>
- <pentabarf:event-slug>designcontest</pentabarf:event-slug>
- <pentabarf:title>(Un)limited design</pentabarf:title>
- <pentabarf:subtitle>Open Design </pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>(Un)limited design- Open Design </summary>
- <description>(un)limited Design Contest invites anybody -- designers, makers, amateurs -- to submit their own designs in the area of form, fashion and food. Unique about the (un)limited Design Contest is that all designs are open for anybody to be used, re-interpreted and redesigned. These derivative designs are also entitled to take part in the contest -- even more: copying and improving designs is strongly encouraged.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/178.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Adrian Bowyer</attendee>
- <attendee>Neil Gershenfeld</attendee>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>178@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>178</pentabarf:event-id>
- <pentabarf:event-slug>designcontest</pentabarf:event-slug>
- <pentabarf:title>(Un)limited design</pentabarf:title>
- <pentabarf:subtitle>Open Design </pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T130000</dtstart>
- <dtend>20090813T140000</dtend>
- <duration>01H00M00S</duration>
- <summary>(Un)limited design- Open Design </summary>
- <description>(un)limited Design Contest invites anybody -- designers, makers, amateurs -- to submit their own designs in the area of form, fashion and food. Unique about the (un)limited Design Contest is that all designs are open for anybody to be used, re-interpreted and redesigned. These derivative designs are also entitled to take part in the contest -- even more: copying and improving designs is strongly encouraged.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/178.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Adrian Bowyer</attendee>
- <attendee>Neil Gershenfeld</attendee>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>190@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>190</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Friday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>07H00M00S</duration>
- <summary>(Un)limited design contest - Friday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/190.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>190@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>190</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Friday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>07H00M00S</duration>
- <summary>(Un)limited design contest - Friday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/190.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>191@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>191</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Saturday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>04H00M00S</duration>
- <summary>(Un)limited design contest - Saturday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/191.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>191@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>191</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Saturday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T110000</dtstart>
- <dtend>20090815T150000</dtend>
- <duration>04H00M00S</duration>
- <summary>(Un)limited design contest - Saturday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/191.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>192@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>192</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest- Sunday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T110000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>04H00M00S</duration>
- <summary>(Un)limited design contest- Sunday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/192.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>192@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>192</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest- Sunday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090816T110000</dtstart>
- <dtend>20090816T150000</dtend>
- <duration>04H00M00S</duration>
- <summary>(Un)limited design contest- Sunday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/192.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>189@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>189</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Thursday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>03H00M00S</duration>
- <summary>(Un)limited design contest - Thursday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/189.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>189@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>189</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>(Un)limited design contest - Thursday Session</pentabarf:title>
- <pentabarf:subtitle>Open Design</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T150000</dtstart>
- <dtend>20090813T180000</dtend>
- <duration>03H00M00S</duration>
- <summary>(Un)limited design contest - Thursday Session- Open Design</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/189.en.html</url>
- <location>Bike-shed Yellow</location>
- <attendee>Ronen Kadushin</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>138@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>138</pentabarf:event-id>
- <pentabarf:event-slug>unusual_lockpicking</pentabarf:event-slug>
- <pentabarf:title>Unusual lock picking</pentabarf:title>
- <pentabarf:subtitle>There's more than five pin tumblers</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Unusual lock picking- There's more than five pin tumblers</summary>
- <description>A talk about some not so common, newly developed or unpublished attacks on some special (including maximum security) locks.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/138.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>iggy</attendee>
- <attendee>mh</attendee>
- <attendee>Ray</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>138@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>138</pentabarf:event-id>
- <pentabarf:event-slug>unusual_lockpicking</pentabarf:event-slug>
- <pentabarf:title>Unusual lock picking</pentabarf:title>
- <pentabarf:subtitle>There's more than five pin tumblers</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T200000</dtstart>
- <dtend>20090815T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>Unusual lock picking- There's more than five pin tumblers</summary>
- <description>A talk about some not so common, newly developed or unpublished attacks on some special (including maximum security) locks.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/138.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>iggy</attendee>
- <attendee>mh</attendee>
- <attendee>Ray</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>80@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>80</pentabarf:event-id>
- <pentabarf:event-slug>sputnik_data</pentabarf:event-slug>
- <pentabarf:title>View from the orbit</pentabarf:title>
- <pentabarf:subtitle>Sputnik data description and analysis</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>View from the orbit- Sputnik data description and analysis</summary>
- <description>This presentation describes analysis of Sputnik data gathered during
-24C3 and 25C3. It shows how simple techniques can be used to gather
-knowledge about previous Congress participants.
-
-24C3 was the second Congress during which Sputnik tracking system was
-used. Sputnik tags were given new firmware and more stations were
-deployed this time. Less participants took part in Sputnik experiment
-than during previous congress, but more data was acquired.
-During 25C3 tags were equipped with firmware able to detect social
-interactions, and tags were able to communicate with each other,
-not only with the system.
-
-Techniques described in this talk can also be used in analysing data gathered from other sources, like cellular phones or bluetooth devices.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/80.en.html</url>
- <location>Monty Hall</location>
- <attendee>Tomasz Rybak</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>80@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>80</pentabarf:event-id>
- <pentabarf:event-slug>sputnik_data</pentabarf:event-slug>
- <pentabarf:title>View from the orbit</pentabarf:title>
- <pentabarf:subtitle>Sputnik data description and analysis</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T110000</dtstart>
- <dtend>20090814T120000</dtend>
- <duration>01H00M00S</duration>
- <summary>View from the orbit- Sputnik data description and analysis</summary>
- <description>This presentation describes analysis of Sputnik data gathered during
-24C3 and 25C3. It shows how simple techniques can be used to gather
-knowledge about previous Congress participants.
-
-24C3 was the second Congress during which Sputnik tracking system was
-used. Sputnik tags were given new firmware and more stations were
-deployed this time. Less participants took part in Sputnik experiment
-than during previous congress, but more data was acquired.
-During 25C3 tags were equipped with firmware able to detect social
-interactions, and tags were able to communicate with each other,
-not only with the system.
-
-Techniques described in this talk can also be used in analysing data gathered from other sources, like cellular phones or bluetooth devices.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/80.en.html</url>
- <location>Monty Hall</location>
- <attendee>Tomasz Rybak</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>126@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>126</pentabarf:event-id>
- <pentabarf:event-slug>webappinsec</pentabarf:event-slug>
- <pentabarf:title>WebAppInSec : 101 threats</pentabarf:title>
- <pentabarf:subtitle>The dirty tricks of the black art of WebAppInSec</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>WebAppInSec : 101 threats- The dirty tricks of the black art of WebAppInSec</summary>
- <description>About different types of (old)web application threats, how to find them and how to exploit them. The dirty tricks of the black art of WebAppInSec.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/126.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Jacco van Tuijl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>126@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>126</pentabarf:event-id>
- <pentabarf:event-slug>webappinsec</pentabarf:event-slug>
- <pentabarf:title>WebAppInSec : 101 threats</pentabarf:title>
- <pentabarf:subtitle>The dirty tricks of the black art of WebAppInSec</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T170000</dtstart>
- <dtend>20090814T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>WebAppInSec : 101 threats- The dirty tricks of the black art of WebAppInSec</summary>
- <description>About different types of (old)web application threats, how to find them and how to exploit them. The dirty tricks of the black art of WebAppInSec.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/126.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Jacco van Tuijl</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>16@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>16</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>When nerds dream big</pentabarf:title>
- <pentabarf:subtitle>Nuancing a wireless utopia </pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>When nerds dream big- Nuancing a wireless utopia </summary>
- <description>This talk will delve into my thesis on the growing criticism of Mark Weiser’s Ubiquitous Computing vision, a twenty year old ideal which still stands at the heart of our craving for location based services, smartphones and self-parking cars.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/16.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Tijmen Schep</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>16@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>16</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>When nerds dream big</pentabarf:title>
- <pentabarf:subtitle>Nuancing a wireless utopia </pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>When nerds dream big- Nuancing a wireless utopia </summary>
- <description>This talk will delve into my thesis on the growing criticism of Mark Weiser’s Ubiquitous Computing vision, a twenty year old ideal which still stands at the heart of our craving for location based services, smartphones and self-parking cars.
-</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/16.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Tijmen Schep</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>33@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>33</pentabarf:event-id>
- <pentabarf:event-slug>why_tor_is_slow</pentabarf:event-slug>
- <pentabarf:title>Why Tor is slow</pentabarf:title>
- <pentabarf:subtitle>and what we're doing about it</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Why Tor is slow- and what we're doing about it</summary>
- <description>Many of you have probably tried Tor, and then stopped because you found
-it too slow. Now that Tor has several hundred thousand users, our original
-design decisions are showing their age. We need to figure out and
-deploy some major changes if we want the Tor network to scale up to the
-million-user mark.
-
-Problem #1 is that Tor's congestion control does not work well. We need
-to come up with ways to let "quiet" streams like web browsing co-exist
-better with "loud" streams like bulk transfer. Problem #2 is that some
-Tor users simply put too much traffic onto the network relative to the
-amount they contribute, so we need to work on ways to limit the effects
-of those users and/or provide priority to the other users. Problem #3
-is that the Tor network simply doesn't have enough capacity to handle
-all the users that want privacy on the Internet. We need to develop
-strategies for increasing the overall community of relays, and consider
-introducing incentives to make the network more self-sustaining.
-
-In this talk I'll walk through these problems and more: why we think
-these are the right problems to solve, and how we're solving them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/33.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Roger Dingledine</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>33@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>33</pentabarf:event-id>
- <pentabarf:event-slug>why_tor_is_slow</pentabarf:event-slug>
- <pentabarf:title>Why Tor is slow</pentabarf:title>
- <pentabarf:subtitle>and what we're doing about it</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T210000</dtstart>
- <dtend>20090814T220000</dtend>
- <duration>01H00M00S</duration>
- <summary>Why Tor is slow- and what we're doing about it</summary>
- <description>Many of you have probably tried Tor, and then stopped because you found
-it too slow. Now that Tor has several hundred thousand users, our original
-design decisions are showing their age. We need to figure out and
-deploy some major changes if we want the Tor network to scale up to the
-million-user mark.
-
-Problem #1 is that Tor's congestion control does not work well. We need
-to come up with ways to let "quiet" streams like web browsing co-exist
-better with "loud" streams like bulk transfer. Problem #2 is that some
-Tor users simply put too much traffic onto the network relative to the
-amount they contribute, so we need to work on ways to limit the effects
-of those users and/or provide priority to the other users. Problem #3
-is that the Tor network simply doesn't have enough capacity to handle
-all the users that want privacy on the Internet. We need to develop
-strategies for increasing the overall community of relays, and consider
-introducing incentives to make the network more self-sustaining.
-
-In this talk I'll walk through these problems and more: why we think
-these are the right problems to solve, and how we're solving them.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/33.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Roger Dingledine</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>160@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>160</pentabarf:event-id>
- <pentabarf:event-slug>wikileaks</pentabarf:event-slug>
- <pentabarf:title>Wikileaks</pentabarf:title>
- <pentabarf:subtitle>History is the only guidebook civilization has, but who's the publisher?</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T120000</dtstart>
- <dtend>20090813T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks- History is the only guidebook civilization has, but who's the publisher?</summary>
- <description>History is the only guidebook civilization has, but who's the
-publisher?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/160.en.html</url>
- <location>Monty Hall</location>
- <attendee>Daniel Schmitt</attendee>
- <attendee>Julian Assange</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>160@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>160</pentabarf:event-id>
- <pentabarf:event-slug>wikileaks</pentabarf:event-slug>
- <pentabarf:title>Wikileaks</pentabarf:title>
- <pentabarf:subtitle>History is the only guidebook civilization has, but who's the publisher?</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T120000</dtstart>
- <dtend>20090813T130000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks- History is the only guidebook civilization has, but who's the publisher?</summary>
- <description>History is the only guidebook civilization has, but who's the
-publisher?</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/160.en.html</url>
- <location>Monty Hall</location>
- <attendee>Daniel Schmitt</attendee>
- <attendee>Julian Assange</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>201@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>201</pentabarf:event-id>
- <pentabarf:event-slug>wikileaks-followup</pentabarf:event-slug>
- <pentabarf:title>Wikileaks -- followup</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T230000</dtstart>
- <dtend>20090814T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks -- followup</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/201.en.html</url>
- <location>Monty Hall</location>
- <attendee>Julian Assange</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>201@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>201</pentabarf:event-id>
- <pentabarf:event-slug>wikileaks-followup</pentabarf:event-slug>
- <pentabarf:title>Wikileaks -- followup</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090813T230000</dtstart>
- <dtend>20090814T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks -- followup</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/201.en.html</url>
- <location>Monty Hall</location>
- <attendee>Julian Assange</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>208@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>208</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Wikileaks panel</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T230000</dtstart>
- <dtend>20090815T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks panel</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/208.en.html</url>
- <location>The Birthday Tent</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>208@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>208</pentabarf:event-id>
- <pentabarf:event-slug/>
- <pentabarf:title>Wikileaks panel</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language/>
- <pentabarf:language-code/>
- <dtstart>20090814T230000</dtstart>
- <dtend>20090815T000000</dtend>
- <duration>01H00M00S</duration>
- <summary>Wikileaks panel</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/208.en.html</url>
- <location>The Birthday Tent</location>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>140@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>140</pentabarf:event-id>
- <pentabarf:event-slug>wok_the_wob</pentabarf:event-slug>
- <pentabarf:title>WokTheWob: FOIA for open source</pentabarf:title>
- <pentabarf:subtitle>Experiences of a transparancy nightmare</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>WokTheWob: FOIA for open source- Experiences of a transparancy nightmare</summary>
- <description>Many countries have a Freedom of Information Act. People can request transparency from their government in theory. But in practice bureaucrats are going out of their way to prevent 'open' from happening until they meet you. Based on experiences of an ethousiastic wobber you can learn how wobbing works in the Netherlands, what resistance you can expect and how you crack open those archives you already pay for.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/140.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Brenno de Winter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>140@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>140</pentabarf:event-id>
- <pentabarf:event-slug>wok_the_wob</pentabarf:event-slug>
- <pentabarf:title>WokTheWob: FOIA for open source</pentabarf:title>
- <pentabarf:subtitle>Experiences of a transparancy nightmare</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T150000</dtstart>
- <dtend>20090815T160000</dtend>
- <duration>01H00M00S</duration>
- <summary>WokTheWob: FOIA for open source- Experiences of a transparancy nightmare</summary>
- <description>Many countries have a Freedom of Information Act. People can request transparency from their government in theory. But in practice bureaucrats are going out of their way to prevent 'open' from happening until they meet you. Based on experiences of an ethousiastic wobber you can learn how wobbing works in the Netherlands, what resistance you can expect and how you crack open those archives you already pay for.</description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/140.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>Brenno de Winter</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>175@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>175</pentabarf:event-id>
- <pentabarf:event-slug>dakami</pentabarf:event-slug>
- <pentabarf:title>x509 is considered harmful</pentabarf:title>
- <pentabarf:subtitle>You will be amazed</pentabarf:subtitle>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>x509 is considered harmful- You will be amazed</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/175.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Dan Kaminsky</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>175@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>175</pentabarf:event-id>
- <pentabarf:event-slug>dakami</pentabarf:event-slug>
- <pentabarf:title>x509 is considered harmful</pentabarf:title>
- <pentabarf:subtitle>You will be amazed</pentabarf:subtitle>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090814T200000</dtstart>
- <dtend>20090814T210000</dtend>
- <duration>01H00M00S</duration>
- <summary>x509 is considered harmful- You will be amazed</summary>
- <description/>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/175.en.html</url>
- <location>The Two Envelopes Tent</location>
- <attendee>Dan Kaminsky</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>116@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>116</pentabarf:event-id>
- <pentabarf:event-slug>your_mind</pentabarf:event-slug>
- <pentabarf:title>Your Mind: Legal Status, Rights and Securing Yourself</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>English</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Your Mind: Legal Status, Rights and Securing Yourself</summary>
- <description>As a participant in the information economy, you no longer exclusively own material originating from your organic brain; you leave a digital trail with your portable device’s transmitted communications and when your image is captured by surveillance cameras. Likewise, if you Tweet or blog, you have outsourced a large portion of your memory and some of your active cognition to inorganic systems. U.S. and International laws relating to protection of intellectual property and criminal search and seizure procedures puts into question protections of these ephemeral communications and memoranda stored on your personal computing devices, in cloud computing networks, on off-shore "subpoena proof" server/jurisdiction-hopping platforms, or on social networking sites. Although once considered to be futuristic technologies, as we move our ideas and memories onto external devices or are subjected to public surveillance with technology (Future Attribute Screening Technology) that assesses pre-crime thoughts by remotely measuring biometric data such as heart rate, body temperature, pheromone responses, and respiration, where do our personal privacy rights to our thoughts end and, instead, become public expressions with lesser legal protections? Similarly, at what state does data in-transit or stored in implantable medical devices continuously connected to the Internet become searchable? In a society in which there is little differentiation remaining between self/computer, thoughts/stored memoranda, and international boundaries, a technology lawyer/computer science professor and a security professional will recommend propositions to protect your data and yourself. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/116.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>James "Myrcurial" Arlen</attendee>
- <attendee>Tiffany Strauchs Rad</attendee>
-</vevent>
-<vevent>
- <method>PUBLISH</method>
- <uid>116@HAR2009@pentabarf.org</uid>
- <pentabarf:event-id>116</pentabarf:event-id>
- <pentabarf:event-slug>your_mind</pentabarf:event-slug>
- <pentabarf:title>Your Mind: Legal Status, Rights and Securing Yourself</pentabarf:title>
- <pentabarf:subtitle/>
- <pentabarf:language>englisch</pentabarf:language>
- <pentabarf:language-code>en</pentabarf:language-code>
- <dtstart>20090815T170000</dtstart>
- <dtend>20090815T180000</dtend>
- <duration>01H00M00S</duration>
- <summary>Your Mind: Legal Status, Rights and Securing Yourself</summary>
- <description>As a participant in the information economy, you no longer exclusively own material originating from your organic brain; you leave a digital trail with your portable device’s transmitted communications and when your image is captured by surveillance cameras. Likewise, if you Tweet or blog, you have outsourced a large portion of your memory and some of your active cognition to inorganic systems. U.S. and International laws relating to protection of intellectual property and criminal search and seizure procedures puts into question protections of these ephemeral communications and memoranda stored on your personal computing devices, in cloud computing networks, on off-shore "subpoena proof" server/jurisdiction-hopping platforms, or on social networking sites. Although once considered to be futuristic technologies, as we move our ideas and memories onto external devices or are subjected to public surveillance with technology (Future Attribute Screening Technology) that assesses pre-crime thoughts by remotely measuring biometric data such as heart rate, body temperature, pheromone responses, and respiration, where do our personal privacy rights to our thoughts end and, instead, become public expressions with lesser legal protections? Similarly, at what state does data in-transit or stored in implantable medical devices continuously connected to the Internet become searchable? In a society in which there is little differentiation remaining between self/computer, thoughts/stored memoranda, and international boundaries, a technology lawyer/computer science professor and a security professional will recommend propositions to protect your data and yourself. </description>
- <class>PUBLIC</class>
- <status>CONFIRMED</status>
- <category>Lecture</category>
- <url>https://har2009.org/program/events/116.en.html</url>
- <location>The Birthday Tent</location>
- <attendee>James "Myrcurial" Arlen</attendee>
- <attendee>Tiffany Strauchs Rad</attendee>
-</vevent>
- </vcalendar>
-</iCalendar> \ No newline at end of file
diff --git a/includes/includes.php b/includes/includes.php
index 601a6ca2..50e98fe5 100644
--- a/includes/includes.php
+++ b/includes/includes.php
@@ -69,7 +69,6 @@ $includeFiles = [
__DIR__ . '/../includes/pages/admin_arrive.php',
__DIR__ . '/../includes/pages/admin_free.php',
__DIR__ . '/../includes/pages/admin_groups.php',
- __DIR__ . '/../includes/pages/admin_import.php',
__DIR__ . '/../includes/pages/admin_log.php',
__DIR__ . '/../includes/pages/admin_questions.php',
__DIR__ . '/../includes/pages/admin_rooms.php',
@@ -82,6 +81,8 @@ $includeFiles = [
__DIR__ . '/../includes/pages/user_questions.php',
__DIR__ . '/../includes/pages/user_settings.php',
__DIR__ . '/../includes/pages/user_shifts.php',
+
+ __DIR__ . '/../includes/pages/schedule/ImportSchedule.php',
];
foreach ($includeFiles as $file) {
diff --git a/includes/model/Room_model.php b/includes/model/Room_model.php
index b29f68fe..f9eaf31d 100644
--- a/includes/model/Room_model.php
+++ b/includes/model/Room_model.php
@@ -62,35 +62,20 @@ function Room_delete($room_id)
}
/**
- * Delete a room by its name
- *
- * @param string $name
- */
-function Room_delete_by_name($name)
-{
- DB::delete('DELETE FROM `Room` WHERE `Name` = ?', [
- $name
- ]);
- engelsystem_log('Room deleted: ' . $name);
-}
-
-/**
* Create a new room
*
* @param string $name Name of the room
- * @param boolean $from_frab Is this a frab imported room?
* @param string $map_url URL to a map tha can be displayed in an iframe
* @param string description Markdown description
* @return false|int
*/
-function Room_create($name, $from_frab, $map_url, $description)
+function Room_create($name, $map_url, $description)
{
DB::insert('
- INSERT INTO `Room` (`Name`, `from_frab`, `map_url`, `description`)
- VALUES (?, ?, ?, ?)
+ INSERT INTO `Room` (`Name`, `map_url`, `description`)
+ VALUES (?, ?, ?)
', [
$name,
- (int)$from_frab,
$map_url,
$description
]);
@@ -98,7 +83,6 @@ function Room_create($name, $from_frab, $map_url, $description)
engelsystem_log(
'Room created: ' . $name
- . ', frab import: ' . ($from_frab ? 'Yes' : '')
. ', map_url: ' . $map_url
. ', description: ' . $description
);
@@ -107,28 +91,25 @@ function Room_create($name, $from_frab, $map_url, $description)
}
/**
- * update a room
+ * Update a room
*
* @param int $room_id The rooms id
* @param string $name Name of the room
- * @param boolean $from_frab Is this a frab imported room?
* @param string $map_url URL to a map tha can be displayed in an iframe
* @param string $description Markdown description
* @return int
*/
-function Room_update($room_id, $name, $from_frab, $map_url, $description)
+function Room_update($room_id, $name, $map_url, $description)
{
$result = DB::update('
UPDATE `Room`
SET
`Name`=?,
- `from_frab`=?,
`map_url`=?,
`description`=?
WHERE `RID`=?
LIMIT 1', [
$name,
- (int)$from_frab,
$map_url,
$description,
$room_id
@@ -136,7 +117,6 @@ function Room_update($room_id, $name, $from_frab, $map_url, $description)
engelsystem_log(
'Room updated: ' . $name .
- ', frab import: ' . ($from_frab ? 'Yes' : '') .
', map_url: ' . $map_url .
', description: ' . $description
);
diff --git a/includes/model/Shifts_model.php b/includes/model/Shifts_model.php
index 01295fbc..fc88908d 100644
--- a/includes/model/Shifts_model.php
+++ b/includes/model/Shifts_model.php
@@ -14,17 +14,19 @@ function Shifts_by_angeltype($angeltype)
return DB::select('
SELECT DISTINCT `Shifts`.* FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`shift_id` = `Shifts`.`SID`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `NeededAngelTypes`.`angel_type_id` = ?
AND `NeededAngelTypes`.`count` > 0
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION
SELECT DISTINCT `Shifts`.* FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`room_id` = `Shifts`.`RID`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `NeededAngelTypes`.`angel_type_id` = ?
AND `NeededAngelTypes`.`count` > 0
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
', [$angeltype['id'], $angeltype['id']]);
}
@@ -41,19 +43,21 @@ function Shifts_free($start, $end)
SELECT * FROM (
SELECT *
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE (`end` > ? AND `start` < ?)
AND (SELECT SUM(`count`) FROM `NeededAngelTypes` WHERE `NeededAngelTypes`.`shift_id`=`Shifts`.`SID`)
> (SELECT COUNT(*) FROM `ShiftEntry` WHERE `ShiftEntry`.`SID`=`Shifts`.`SID` AND `freeloaded`=0)
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION
SELECT *
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE (`end` > ? AND `start` < ?)
AND (SELECT SUM(`count`) FROM `NeededAngelTypes` WHERE `NeededAngelTypes`.`room_id`=`Shifts`.`RID`)
> (SELECT COUNT(*) FROM `ShiftEntry` WHERE `ShiftEntry`.`SID`=`Shifts`.`SID` AND `freeloaded`=0)
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
) AS `tmp`
ORDER BY `tmp`.`start`
", [
@@ -70,16 +74,6 @@ function Shifts_free($start, $end)
}
/**
- * Returns all shifts with a PSID (from frab import)
- *
- * @return array[]
- */
-function Shifts_from_frab()
-{
- return DB::select('SELECT * FROM `Shifts` WHERE `PSID` IS NOT NULL ORDER BY `start`');
-}
-
-/**
* @param array|int $room
* @return array[]
*/
@@ -103,11 +97,12 @@ function Shifts_by_ShiftsFilter(ShiftsFilter $shiftsFilter)
JOIN `Room` USING (`RID`)
JOIN `ShiftTypes` ON `ShiftTypes`.`id` = `Shifts`.`shifttype_id`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`shift_id` = `Shifts`.`SID`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`RID` IN (' . implode(',', $shiftsFilter->getRooms()) . ')
AND `start` BETWEEN ? AND ?
AND `NeededAngelTypes`.`angel_type_id` IN (' . implode(',', $shiftsFilter->getTypes()) . ')
AND `NeededAngelTypes`.`count` > 0
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION
@@ -116,11 +111,12 @@ function Shifts_by_ShiftsFilter(ShiftsFilter $shiftsFilter)
JOIN `Room` USING (`RID`)
JOIN `ShiftTypes` ON `ShiftTypes`.`id` = `Shifts`.`shifttype_id`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`room_id`=`Shifts`.`RID`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`RID` IN (' . implode(',', $shiftsFilter->getRooms()) . ')
AND `start` BETWEEN ? AND ?
AND `NeededAngelTypes`.`angel_type_id` IN (' . implode(',', $shiftsFilter->getTypes()) . ')
AND `NeededAngelTypes`.`count` > 0
- AND NOT `Shifts`.`PSID` IS NULL) AS tmp_shifts
+ AND NOT s.shift_id IS NULL) AS tmp_shifts
ORDER BY `room_name`, `start`';
@@ -152,9 +148,10 @@ function NeededAngeltypes_by_ShiftsFilter(ShiftsFilter $shiftsFilter)
FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`shift_id`=`Shifts`.`SID`
JOIN `AngelTypes` ON `AngelTypes`.`id`= `NeededAngelTypes`.`angel_type_id`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`RID` IN (' . implode(',', $shiftsFilter->getRooms()) . ')
AND `start` BETWEEN ? AND ?
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION
@@ -168,9 +165,10 @@ function NeededAngeltypes_by_ShiftsFilter(ShiftsFilter $shiftsFilter)
FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`room_id`=`Shifts`.`RID`
JOIN `AngelTypes` ON `AngelTypes`.`id`= `NeededAngelTypes`.`angel_type_id`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`RID` IN (' . implode(',', $shiftsFilter->getRooms()) . ')
AND `start` BETWEEN ? AND ?
- AND NOT `Shifts`.`PSID` IS NULL';
+ AND NOT s.shift_id IS NULL';
return DB::select(
$sql,
@@ -201,9 +199,10 @@ function NeededAngeltype_by_Shift_and_Angeltype($shift, $angeltype)
FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`shift_id`=`Shifts`.`SID`
JOIN `AngelTypes` ON `AngelTypes`.`id`= `NeededAngelTypes`.`angel_type_id`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`SID`=?
AND `AngelTypes`.`id`=?
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION
@@ -217,9 +216,10 @@ function NeededAngeltype_by_Shift_and_Angeltype($shift, $angeltype)
FROM `Shifts`
JOIN `NeededAngelTypes` ON `NeededAngelTypes`.`room_id`=`Shifts`.`RID`
JOIN `AngelTypes` ON `AngelTypes`.`id`= `NeededAngelTypes`.`angel_type_id`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `Shifts`.`SID`=?
AND `AngelTypes`.`id`=?
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
',
[
$shift['SID'],
@@ -495,16 +495,6 @@ function Shift_signup_allowed(
}
/**
- * Delete a shift by its external id.
- *
- * @param int $shift_psid
- */
-function Shift_delete_by_psid($shift_psid)
-{
- DB::delete('DELETE FROM `Shifts` WHERE `PSID`=?', [$shift_psid]);
-}
-
-/**
* Delete a shift.
*
* @param int $shift_id
@@ -535,7 +525,6 @@ function Shift_update($shift)
`RID` = ?,
`title` = ?,
`URL` = ?,
- `PSID` = ?,
`edited_by_user_id` = ?,
`edited_at_timestamp` = ?
WHERE `SID` = ?
@@ -547,7 +536,6 @@ function Shift_update($shift)
$shift['RID'],
$shift['title'],
$shift['URL'],
- $shift['PSID'],
$user->id,
time(),
$shift['SID']
@@ -556,25 +544,6 @@ function Shift_update($shift)
}
/**
- * Update a shift by its external id.
- *
- * @param array $shift
- * @return int
- * @throws Exception
- */
-function Shift_update_by_psid($shift)
-{
- $shift_source = DB::selectOne('SELECT `SID` FROM `Shifts` WHERE `PSID`=?', [$shift['PSID']]);
-
- if (empty($shift_source)) {
- throw new Exception('Shift not found.');
- }
-
- $shift['SID'] = $shift_source['SID'];
- return Shift_update($shift);
-}
-
-/**
* Create a new shift.
*
* @param array $shift
@@ -590,12 +559,11 @@ function Shift_create($shift)
`RID`,
`title`,
`URL`,
- `PSID`,
`created_by_user_id`,
`edited_at_timestamp`,
`created_at_timestamp`
)
- VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
',
[
$shift['shifttype_id'],
@@ -604,7 +572,6 @@ function Shift_create($shift)
$shift['RID'],
$shift['title'],
$shift['URL'],
- $shift['PSID'],
auth()->user()->id,
time(),
time(),
diff --git a/includes/model/Stats.php b/includes/model/Stats.php
index c8342d82..e355b064 100644
--- a/includes/model/Stats.php
+++ b/includes/model/Stats.php
@@ -39,8 +39,9 @@ function stats_hours_to_work()
(SELECT SUM(`count`) FROM `NeededAngelTypes` WHERE `NeededAngelTypes`.`shift_id`=`Shifts`.`SID`)
* (`Shifts`.`end` - `Shifts`.`start`)/3600 AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` >= ?
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION ALL
@@ -48,8 +49,9 @@ function stats_hours_to_work()
(SELECT SUM(`count`) FROM `NeededAngelTypes` WHERE `NeededAngelTypes`.`room_id`=`Shifts`.`RID`)
* (`Shifts`.`end` - `Shifts`.`start`)/3600 AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` >= ?
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
) AS `tmp`
", [
time(),
@@ -90,8 +92,9 @@ function stats_angels_needed_three_hours()
)
AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` > ? AND `start` < ?
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION ALL
@@ -113,8 +116,9 @@ function stats_angels_needed_three_hours()
)
AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` > ? AND `start` < ?
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
) AS `tmp`", [
$now,
$in3hours,
@@ -163,8 +167,9 @@ function stats_angels_needed_for_nightshifts()
)
AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` > ? AND `start` < ?
- AND `Shifts`.`PSID` IS NULL
+ AND s.shift_id IS NULL
UNION ALL
@@ -186,8 +191,9 @@ function stats_angels_needed_for_nightshifts()
)
AS `count`
FROM `Shifts`
+ LEFT JOIN schedule_shift AS s on Shifts.SID = s.shift_id
WHERE `end` > ? AND `start` < ?
- AND NOT `Shifts`.`PSID` IS NULL
+ AND NOT s.shift_id IS NULL
) AS `tmp`", [
$night_start,
$night_end,
diff --git a/includes/pages/admin_import.php b/includes/pages/admin_import.php
deleted file mode 100644
index 1dbd742b..00000000
--- a/includes/pages/admin_import.php
+++ /dev/null
@@ -1,478 +0,0 @@
-<?php
-
-/**
- * @return string
- */
-function admin_import_title()
-{
- return __('Frab import');
-}
-
-/**
- * @return string
- */
-function admin_import()
-{
- global $rooms_import;
- $user = auth()->user();
- $html = '';
- $import_dir = __DIR__ . '/../../import';
- $request = request();
-
- $step = 'input';
- if (
- $request->has('step')
- && in_array($request->input('step'), [
- 'input',
- 'check',
- 'import'
- ])
- ) {
- $step = $request->input('step');
- }
-
- try {
- $test_handle = @fopen($import_dir . '/tmp', 'w');
- fclose($test_handle);
- @unlink($import_dir . '/tmp');
- } catch (Exception $e) {
- error(__('Webserver has no write-permission on import directory.'));
- }
-
- $import_file = $import_dir . '/import_' . $user->id . '.xml';
- $shifttype_id = null;
- $add_minutes_start = 15;
- $add_minutes_end = 15;
-
- $shifttypes_source = ShiftTypes();
- $shifttypes = [];
- foreach ($shifttypes_source as $shifttype) {
- $shifttypes[$shifttype['id']] = $shifttype['name'];
- }
-
- switch ($step) {
- case 'input':
- $valid = false;
-
- if ($request->hasPostData('submit')) {
- $valid = true;
-
- if ($request->has('shifttype_id') && isset($shifttypes[$request->input('shifttype_id')])) {
- $shifttype_id = $request->input('shifttype_id');
- } else {
- $valid = false;
- error(__('Please select a shift type.'));
- }
-
- $minutes_start = trim($request->input('add_minutes_start'));
- if ($request->has('add_minutes_start') && is_numeric($minutes_start)) {
- $add_minutes_start = $minutes_start;
- } else {
- $valid = false;
- error(__('Please enter an amount of minutes to add to a talk\'s begin.'));
- }
-
- if ($request->has('add_minutes_end') && is_numeric(trim($request->input('add_minutes_end')))) {
- $add_minutes_end = trim($request->input('add_minutes_end'));
- } else {
- $valid = false;
- error(__('Please enter an amount of minutes to add to a talk\'s end.'));
- }
-
- if (isset($_FILES['xcal_file']) && ($_FILES['xcal_file']['error'] == 0)) {
- if (move_uploaded_file($_FILES['xcal_file']['tmp_name'], $import_file)) {
- libxml_use_internal_errors(true);
- if (simplexml_load_file($import_file) === false) {
- $valid = false;
- error(__('No valid xml/xcal file provided.'));
- unlink($import_file);
- }
- } else {
- $valid = false;
- error(__('File upload went wrong.'));
- }
- } else {
- $valid = false;
- error(__('Please provide some data.'));
- }
- }
-
- if ($valid) {
- throw_redirect(
- page_link_to('admin_import', [
- 'step' => 'check',
- 'shifttype_id' => $shifttype_id,
- 'add_minutes_end' => $add_minutes_end,
- 'add_minutes_start' => $add_minutes_start,
- ])
- );
- } else {
- $html .= div('well well-sm text-center', [
- __('File Upload')
- . mute(glyph('arrow-right'))
- . mute(__('Validation'))
- . mute(glyph('arrow-right'))
- . mute(__('Import'))
- ]) . div('row', [
- div('col-md-offset-3 col-md-6', [
- form([
- form_info(
- '',
- __('This import will create/update/delete rooms and shifts by given FRAB-export file. The needed file format is xcal.')
- ),
- form_select('shifttype_id', __('Shifttype'), $shifttypes, $shifttype_id),
- form_spinner('add_minutes_start', __('Add minutes to start'), $add_minutes_start),
- form_spinner('add_minutes_end', __('Add minutes to end'), $add_minutes_end),
- form_file('xcal_file', __('xcal-File (.xcal)')),
- form_submit('submit', __('Import'))
- ])
- ])
- ]);
- }
- break;
-
- case 'check':
- if (!file_exists($import_file)) {
- error(__('Missing import file.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('shifttype_id') && isset($shifttypes[$request->input('shifttype_id')])) {
- $shifttype_id = $request->input('shifttype_id');
- } else {
- error(__('Please select a shift type.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('add_minutes_start') && is_numeric(trim($request->input('add_minutes_start')))) {
- $add_minutes_start = trim($request->input('add_minutes_start'));
- } else {
- error(__('Please enter an amount of minutes to add to a talk\'s begin.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('add_minutes_end') && is_numeric(trim($request->input(('add_minutes_end'))))) {
- $add_minutes_end = trim($request->input('add_minutes_end'));
- } else {
- error(__('Please enter an amount of minutes to add to a talk\'s end.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
- list($events_new, $events_updated, $events_deleted) = prepare_events(
- $import_file,
- $shifttype_id,
- $add_minutes_start,
- $add_minutes_end
- );
-
- $html .= div(
- 'well well-sm text-center',
- [
- '<span class="text-success">' . __('File Upload') . glyph('ok-circle') . '</span>'
- . mute(glyph('arrow-right'))
- . __('Validation')
- . mute(glyph('arrow-right'))
- . mute(__('Import'))
- ]
- )
- . form(
- [
- div('row', [
- div('col-sm-6', [
- '<h3>' . __('Rooms to create') . '</h3>',
- table(__('Name'), $rooms_new)
- ]),
- div('col-sm-6', [
- '<h3>' . __('Rooms to delete') . '</h3>',
- table(__('Name'), $rooms_deleted)
- ])
- ]),
- '<h3>' . __('Shifts to create') . '</h3>',
- table([
- 'day' => __('Day'),
- 'start' => __('Start'),
- 'end' => __('End'),
- 'shifttype' => __('Shift type'),
- 'title' => __('Title'),
- 'room' => __('Room')
- ], shifts_printable($events_new, $shifttypes)),
- '<h3>' . __('Shifts to update') . '</h3>',
- table([
- 'day' => __('Day'),
- 'start' => __('Start'),
- 'end' => __('End'),
- 'shifttype' => __('Shift type'),
- 'title' => __('Title'),
- 'room' => __('Room')
- ], shifts_printable($events_updated, $shifttypes)),
- '<h3>' . __('Shifts to delete') . '</h3>',
- table([
- 'day' => __('Day'),
- 'start' => __('Start'),
- 'end' => __('End'),
- 'shifttype' => __('Shift type'),
- 'title' => __('Title'),
- 'room' => __('Room')
- ], shifts_printable($events_deleted, $shifttypes)),
- form_submit('submit', __('Import'))
- ],
- page_link_to('admin_import', [
- 'step' => 'import',
- 'shifttype_id' => $shifttype_id,
- 'add_minutes_end' => $add_minutes_end,
- 'add_minutes_start' => $add_minutes_start,
- ])
- );
- break;
-
- case 'import':
- if (!file_exists($import_file)) {
- error(__('Missing import file.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if (!file_exists($import_file)) {
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('shifttype_id') && isset($shifttypes[$request->input('shifttype_id')])) {
- $shifttype_id = $request->input('shifttype_id');
- } else {
- error(__('Please select a shift type.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('add_minutes_start') && is_numeric(trim($request->input('add_minutes_start')))) {
- $add_minutes_start = trim($request->input('add_minutes_start'));
- } else {
- error(__('Please enter an amount of minutes to add to a talk\'s begin.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- if ($request->has('add_minutes_end') && is_numeric(trim($request->input('add_minutes_end')))) {
- $add_minutes_end = trim($request->input('add_minutes_end'));
- } else {
- error(__('Please enter an amount of minutes to add to a talk\'s end.'));
- throw_redirect(page_link_to('admin_import'));
- }
-
- list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
- foreach ($rooms_new as $room) {
- $result = Room_create($room, true, null, null);
- $rooms_import[trim($room)] = $result;
- }
- foreach ($rooms_deleted as $room) {
- Room_delete_by_name($room);
- }
-
- list($events_new, $events_updated, $events_deleted) = prepare_events(
- $import_file,
- $shifttype_id,
- $add_minutes_start,
- $add_minutes_end
- );
- foreach ($events_new as $event) {
- Shift_create($event);
- }
-
- foreach ($events_updated as $event) {
- Shift_update_by_psid($event);
- }
-
- foreach ($events_deleted as $event) {
- Shift_delete_by_psid($event['PSID']);
- }
-
- engelsystem_log('Frab import done');
-
- unlink($import_file);
-
- $html .= div('well well-sm text-center', [
- '<span class="text-success">' . __('File Upload') . glyph('ok-circle') . '</span>'
- . mute(glyph('arrow-right'))
- . '<span class="text-success">' . __('Validation') . glyph('ok-circle') . '</span>'
- . mute(glyph('arrow-right'))
- . '<span class="text-success">' . __('Import') . glyph('ok-circle') . '</span>'
- ]) . success(__('It\'s done!'), true);
- break;
- default:
- throw_redirect(page_link_to('admin_import'));
- }
-
- return page_with_title(admin_import_title(), [
- msg(),
- $html
- ]);
-}
-
-/**
- * @param string $file
- * @return array
- */
-function prepare_rooms($file)
-{
- global $rooms_import;
- $data = read_xml($file);
-
- // Load rooms from db for compare with input
- $rooms = Rooms();
- // Contains rooms from db with from_frab==true
- $rooms_db = [];
- // Contains all rooms from db
- $rooms_db_all = [];
- // Contains all rooms from db and frab
- $rooms_import = [];
- foreach ($rooms as $room) {
- if ($room['from_frab']) {
- $rooms_db[] = $room['Name'];
- }
- $rooms_db_all[] = $room['Name'];
- $rooms_import[$room['Name']] = $room['RID'];
- }
-
- $events = $data->vcalendar->vevent;
- $rooms_frab = [];
- foreach ($events as $event) {
- $rooms_frab[] = (string)$event->location;
- if (!isset($rooms_import[trim($event->location)])) {
- $rooms_import[trim($event->location)] = trim($event->location);
- }
- }
- $rooms_frab = array_unique($rooms_frab);
-
- $rooms_new = array_diff($rooms_frab, $rooms_db_all);
- $rooms_deleted = array_diff($rooms_db, $rooms_frab);
-
- return [
- $rooms_new,
- $rooms_deleted
- ];
-}
-
-/**
- * @param string $file
- * @param int $shifttype_id
- * @param int $add_minutes_start
- * @param int $add_minutes_end
- * @return array
- */
-function prepare_events($file, $shifttype_id, $add_minutes_start, $add_minutes_end)
-{
- global $rooms_import;
- $data = read_xml($file);
-
- $rooms = Rooms();
- $rooms_db = [];
- foreach ($rooms as $room) {
- $rooms_db[$room['Name']] = $room['RID'];
- }
-
- $events = $data->vcalendar->vevent;
- $shifts_pb = [];
- foreach ($events as $event) {
- $event_pb = $event->children('http://pentabarf.org');
- $event_id = trim($event_pb->{'event-id'});
- $shifts_pb[$event_id] = [
- 'shifttype_id' => $shifttype_id,
- 'start' => parse_date("Ymd\THis", $event->dtstart) - $add_minutes_start * 60,
- 'end' => parse_date("Ymd\THis", $event->dtend) + $add_minutes_end * 60,
- 'RID' => $rooms_import[trim($event->location)],
- 'title' => trim($event->summary),
- 'URL' => trim($event->url),
- 'PSID' => $event_id
- ];
- }
-
- $shifts = Shifts_from_frab();
- $shifts_db = [];
- foreach ($shifts as $shift) {
- $shifts_db[$shift['PSID']] = $shift;
- }
-
- $shifts_new = [];
- $shifts_updated = [];
- foreach ($shifts_pb as $shift) {
- if (!isset($shifts_db[$shift['PSID']])) {
- $shifts_new[] = $shift;
- } else {
- $tmp = $shifts_db[$shift['PSID']];
- if (
- $shift['shifttype_id'] != $tmp['shifttype_id']
- || $shift['title'] != $tmp['title']
- || $shift['start'] != $tmp['start']
- || $shift['end'] != $tmp['end']
- || $shift['RID'] != $tmp['RID']
- || $shift['URL'] != $tmp['URL']
- ) {
- $shifts_updated[] = $shift;
- }
- }
- }
-
- $shifts_deleted = [];
- foreach ($shifts_db as $shift) {
- if (!isset($shifts_pb[$shift['PSID']])) {
- $shifts_deleted[] = $shift;
- }
- }
-
- return [
- $shifts_new,
- $shifts_updated,
- $shifts_deleted
- ];
-}
-
-/**
- * @param string $file
- * @return SimpleXMLElement
- */
-function read_xml($file)
-{
- global $xml_import;
- if (!isset($xml_import)) {
- libxml_use_internal_errors(true);
- $xml_import = simplexml_load_file($file);
- }
- return $xml_import;
-}
-
-/**
- * @param array $shifts
- * @param array $shifttypes
- * @return array
- */
-function shifts_printable($shifts, $shifttypes)
-{
- global $rooms_import;
- $rooms = array_flip($rooms_import);
-
- uasort($shifts, 'shift_sort');
-
- $shifts_printable = [];
- foreach ($shifts as $shift) {
- $shifts_printable[] = [
- 'day' => date('l, Y-m-d', $shift['start']),
- 'start' => date('H:i', $shift['start']),
- 'shifttype' => ShiftType_name_render([
- 'id' => $shift['shifttype_id'],
- 'name' => $shifttypes[$shift['shifttype_id']]
- ]),
- 'title' => shorten($shift['title']),
- 'end' => date('H:i', $shift['end']),
- 'room' => $rooms[$shift['RID']]
- ];
- }
- return $shifts_printable;
-}
-
-/**
- * @param array $shift_a
- * @param array $shift_b
- * @return int
- */
-function shift_sort($shift_a, $shift_b)
-{
- return ($shift_a['start'] < $shift_b['start']) ? -1 : 1;
-}
diff --git a/includes/pages/admin_rooms.php b/includes/pages/admin_rooms.php
index 74c0fbe3..733e56af 100644
--- a/includes/pages/admin_rooms.php
+++ b/includes/pages/admin_rooms.php
@@ -19,7 +19,6 @@ function admin_rooms()
foreach ($rooms_source as $room) {
$rooms[] = [
'name' => Room_name_render($room),
- 'from_frab' => glyph_bool($room['from_frab']),
'map_url' => glyph_bool(!empty($room['map_url'])),
'actions' => table_buttons([
button(
@@ -40,7 +39,6 @@ function admin_rooms()
if ($request->has('show')) {
$msg = '';
$name = '';
- $from_frab = false;
$map_url = null;
$description = null;
$room_id = 0;
@@ -61,7 +59,6 @@ function admin_rooms()
$room_id = $request->input('id');
$name = $room['Name'];
- $from_frab = $room['from_frab'];
$map_url = $room['map_url'];
$description = $room['description'];
@@ -88,8 +85,6 @@ function admin_rooms()
$msg .= error(__('Please enter a name.'), true);
}
- $from_frab = $request->has('from_frab');
-
if ($request->has('map_url')) {
$map_url = strip_request_item('map_url');
}
@@ -118,9 +113,9 @@ function admin_rooms()
if ($valid) {
if (empty($room_id)) {
- $room_id = Room_create($name, $from_frab, $map_url, $description);
+ $room_id = Room_create($name, $map_url, $description);
} else {
- Room_update($room_id, $name, $from_frab, $map_url, $description);
+ Room_update($room_id, $name, $map_url, $description);
}
NeededAngelTypes_delete_by_room($room_id);
@@ -159,7 +154,6 @@ function admin_rooms()
div('row', [
div('col-md-6', [
form_text('name', __('Name'), $name, false, 35),
- form_checkbox('from_frab', __('Frab import'), $from_frab),
form_text('map_url', __('Map URL'), $map_url),
form_info('', __('The map url is used to display an iframe on the room page.')),
form_textarea('description', __('Description'), $description),
@@ -212,7 +206,6 @@ function admin_rooms()
msg(),
table([
'name' => __('Name'),
- 'from_frab' => __('Frab import'),
'map_url' => __('Map'),
'actions' => ''
], $rooms)
diff --git a/includes/pages/admin_shifts.php b/includes/pages/admin_shifts.php
index dc61392f..dbcce180 100644
--- a/includes/pages/admin_shifts.php
+++ b/includes/pages/admin_shifts.php
@@ -350,7 +350,6 @@ function admin_shifts()
foreach ($session->get('admin_shifts_shifts', []) as $shift) {
$shift['URL'] = null;
- $shift['PSID'] = null;
$shift_id = Shift_create($shift);
engelsystem_log(
diff --git a/includes/pages/schedule/ImportSchedule.php b/includes/pages/schedule/ImportSchedule.php
new file mode 100644
index 00000000..1b03b57b
--- /dev/null
+++ b/includes/pages/schedule/ImportSchedule.php
@@ -0,0 +1,612 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Controllers\Admin\Schedule;
+
+use Carbon\Carbon;
+use Engelsystem\Controllers\BaseController;
+use Engelsystem\Helpers\Schedule\Event;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Helpers\Schedule\Schedule;
+use Engelsystem\Helpers\Schedule\XmlParser;
+use Engelsystem\Http\Request;
+use Engelsystem\Http\Response;
+use Engelsystem\Models\Shifts\Schedule as ScheduleUrl;
+use Engelsystem\Models\Shifts\ScheduleShift;
+use ErrorException;
+use GuzzleHttp\Client as GuzzleClient;
+use Illuminate\Database\Connection as DatabaseConnection;
+use Illuminate\Database\Eloquent\Builder as QueryBuilder;
+use Illuminate\Database\Eloquent\Collection as DatabaseCollection;
+use Illuminate\Support\Arr;
+use Illuminate\Support\Collection;
+use Psr\Log\LoggerInterface;
+use stdClass;
+use Symfony\Component\HttpFoundation\Session\SessionInterface;
+
+class ImportSchedule extends BaseController
+{
+ /** @var DatabaseConnection */
+ protected $db;
+
+ /** @var LoggerInterface */
+ protected $log;
+
+ /** @var array */
+ protected $permissions = [
+ 'schedule.import',
+ ];
+
+ /** @var XmlParser */
+ protected $parser;
+
+ /** @var Response */
+ protected $response;
+
+ /** @var SessionInterface */
+ protected $session;
+
+ /** @var string */
+ protected $url = '/admin/schedule';
+
+ /** @var GuzzleClient */
+ protected $guzzle;
+
+ /**
+ * @param Response $response
+ * @param SessionInterface $session
+ * @param GuzzleClient $guzzle
+ * @param XmlParser $parser
+ * @param DatabaseConnection $db
+ * @param LoggerInterface $log
+ */
+ public function __construct(
+ Response $response,
+ SessionInterface $session,
+ GuzzleClient $guzzle,
+ XmlParser $parser,
+ DatabaseConnection $db,
+ LoggerInterface $log
+ ) {
+ $this->guzzle = $guzzle;
+ $this->parser = $parser;
+ $this->response = $response;
+ $this->session = $session;
+ $this->db = $db;
+ $this->log = $log;
+ }
+
+ /**
+ * @return Response
+ */
+ public function index(): Response
+ {
+ return $this->response->withView(
+ 'admin/schedule/index.twig',
+ [
+ 'errors' => $this->getFromSession('errors'),
+ 'success' => $this->getFromSession('success'),
+ 'shift_types' => $this->getShiftTypes(),
+ ]
+ );
+ }
+
+ /**
+ * @param Request $request
+ * @return Response
+ */
+ public function loadSchedule(Request $request): Response
+ {
+ try {
+ /**
+ * @var Event[] $newEvents
+ * @var Event[] $changeEvents
+ * @var Event[] $deleteEvents
+ * @var Room[] $newRooms
+ * @var int $shiftType
+ * @var ScheduleUrl $scheduleUrl
+ * @var Schedule $schedule
+ * @var int $minutesBefore
+ * @var int $minutesAfter
+ */
+ list(
+ $newEvents,
+ $changeEvents,
+ $deleteEvents,
+ $newRooms,
+ $shiftType,
+ $scheduleUrl,
+ $schedule,
+ $minutesBefore,
+ $minutesAfter
+ ) = $this->getScheduleData($request);
+ } catch (ErrorException $e) {
+ return back()->with('errors', [$e->getMessage()]);
+ }
+
+ return $this->response->withView(
+ 'admin/schedule/load.twig',
+ [
+ 'errors' => $this->getFromSession('errors'),
+ 'schedule_url' => $scheduleUrl->url,
+ 'shift_type' => $shiftType,
+ 'minutes_before' => $minutesBefore,
+ 'minutes_after' => $minutesAfter,
+ 'schedule' => $schedule,
+ 'rooms' => [
+ 'add' => $newRooms,
+ ],
+ 'shifts' => [
+ 'add' => $newEvents,
+ 'update' => $changeEvents,
+ 'delete' => $deleteEvents,
+ ],
+ ]
+ );
+ }
+
+ /**
+ * @param Request $request
+ *
+ * @return Response
+ */
+ public function importSchedule(Request $request): Response
+ {
+ try {
+ /**
+ * @var Event[] $newEvents
+ * @var Event[] $changeEvents
+ * @var Event[] $deleteEvents
+ * @var Room[] $newRooms
+ * @var int $shiftType
+ * @var ScheduleUrl $scheduleUrl
+ */
+ list(
+ $newEvents,
+ $changeEvents,
+ $deleteEvents,
+ $newRooms,
+ $shiftType,
+ $scheduleUrl
+ ) = $this->getScheduleData($request);
+ } catch (ErrorException $e) {
+ return back()->with('errors', [$e->getMessage()]);
+ }
+
+ $this->log('Started schedule "{schedule}" import', ['schedule' => $scheduleUrl->url]);
+
+ foreach ($newRooms as $room) {
+ $this->createRoom($room);
+ }
+
+ $rooms = $this->getAllRooms();
+ foreach ($newEvents as $event) {
+ $this->createEvent(
+ $event,
+ (int)$shiftType,
+ $rooms
+ ->where('name', $event->getRoom()->getName())
+ ->first(),
+ $scheduleUrl
+ );
+ }
+
+ foreach ($changeEvents as $event) {
+ $this->updateEvent(
+ $event,
+ (int)$shiftType,
+ $rooms
+ ->where('name', $event->getRoom()->getName())
+ ->first()
+ );
+ }
+
+ foreach ($deleteEvents as $event) {
+ $this->deleteEvent($event);
+ }
+
+ $this->log('Ended schedule "{schedule}" import', ['schedule' => $scheduleUrl->url]);
+
+ return redirect($this->url, 303)
+ ->with('success', ['schedule.import.success']);
+ }
+
+ /**
+ * @param Room $room
+ */
+ protected function createRoom(Room $room): void
+ {
+ $this->db
+ ->table('Room')
+ ->insert(
+ [
+ 'Name' => $room->getName(),
+ ]
+ );
+
+ $this->log('Created schedule room "{room}"', ['room' => $room->getName()]);
+ }
+
+ /**
+ * @param Event $shift
+ * @param int $shiftTypeId
+ * @param stdClass $room
+ * @param ScheduleUrl $scheduleUrl
+ */
+ protected function createEvent(Event $shift, int $shiftTypeId, stdClass $room, ScheduleUrl $scheduleUrl): void
+ {
+ $user = auth()->user();
+
+ $this->db
+ ->table('Shifts')
+ ->insert(
+ [
+ 'title' => $shift->getTitle(),
+ 'shifttype_id' => $shiftTypeId,
+ 'start' => $shift->getDate()->unix(),
+ 'end' => $shift->getEndDate()->unix(),
+ 'RID' => $room->id,
+ 'URL' => $shift->getUrl(),
+ 'created_by_user_id' => $user->id,
+ 'created_at_timestamp' => time(),
+ 'edited_by_user_id' => null,
+ 'edited_at_timestamp' => 0,
+ ]
+ );
+
+ $shiftId = $this->db->getDoctrineConnection()->lastInsertId();
+
+ $scheduleShift = new ScheduleShift(['shift_id' => $shiftId, 'guid' => $shift->getGuid()]);
+ $scheduleShift->schedule()->associate($scheduleUrl);
+ $scheduleShift->save();
+
+ $this->log(
+ 'Created schedule shift "{shift}" in "{room}" ({from} {to}, {guid})',
+ [
+ 'shift' => $shift->getTitle(),
+ 'room' => $room->name,
+ 'from' => $shift->getDate()->format(Carbon::RFC3339),
+ 'to' => $shift->getEndDate()->format(Carbon::RFC3339),
+ 'guid' => $shift->getGuid(),
+ ]
+ );
+ }
+
+ /**
+ * @param Event $shift
+ * @param int $shiftTypeId
+ * @param stdClass $room
+ */
+ protected function updateEvent(Event $shift, int $shiftTypeId, stdClass $room): void
+ {
+ $user = auth()->user();
+
+ $this->db
+ ->table('Shifts')
+ ->join('schedule_shift', 'Shifts.SID', 'schedule_shift.shift_id')
+ ->where('schedule_shift.guid', $shift->getGuid())
+ ->update(
+ [
+ 'title' => $shift->getTitle(),
+ 'shifttype_id' => $shiftTypeId,
+ 'start' => $shift->getDate()->unix(),
+ 'end' => $shift->getEndDate()->unix(),
+ 'RID' => $room->id,
+ 'URL' => $shift->getUrl(),
+ 'edited_by_user_id' => $user->id,
+ 'edited_at_timestamp' => time(),
+ ]
+ );
+
+ $this->log(
+ 'Updated schedule shift "{shift}" in "{room}" ({from} {to}, {guid})',
+ [
+ 'shift' => $shift->getTitle(),
+ 'room' => $room->name,
+ 'from' => $shift->getDate()->format(Carbon::RFC3339),
+ 'to' => $shift->getEndDate()->format(Carbon::RFC3339),
+ 'guid' => $shift->getGuid(),
+ ]
+ );
+ }
+
+ /**
+ * @param Event $shift
+ */
+ protected function deleteEvent(Event $shift): void
+ {
+ $this->db
+ ->table('Shifts')
+ ->join('schedule_shift', 'Shifts.SID', 'schedule_shift.shift_id')
+ ->where('schedule_shift.guid', $shift->getGuid())
+ ->delete();
+
+ $this->log(
+ 'Deleted schedule shift "{shift}" ({from} {to}, {guid})',
+ [
+ 'shift' => $shift->getTitle(),
+ 'from' => $shift->getDate()->format(Carbon::RFC3339),
+ 'to' => $shift->getEndDate()->format(Carbon::RFC3339),
+ 'guid' => $shift->getGuid(),
+ ]
+ );
+ }
+
+ /**
+ * @param Request $request
+ * @return Event[]|Room[]|ScheduleUrl|Schedule|string
+ * @throws ErrorException
+ */
+ protected function getScheduleData(Request $request)
+ {
+ $data = $this->validate(
+ $request,
+ [
+ 'schedule-url' => 'required|url',
+ 'shift-type' => 'required|int',
+ 'minutes-before' => 'optional|int',
+ 'minutes-after' => 'optional|int',
+ ]
+ );
+
+ $scheduleResponse = $this->guzzle->get($data['schedule-url']);
+ if ($scheduleResponse->getStatusCode() != 200) {
+ throw new ErrorException('schedule.import.request-error');
+ }
+
+ $scheduleData = (string)$scheduleResponse->getBody();
+ if (!$this->parser->load($scheduleData)) {
+ throw new ErrorException('schedule.import.read-error');
+ }
+
+ $shiftType = (int)$data['shift-type'];
+ if (!isset($this->getShiftTypes()[$shiftType])) {
+ throw new ErrorException('schedule.import.invalid-shift-type');
+ }
+
+ $scheduleUrl = $this->getScheduleUrl($data['schedule-url']);
+ $schedule = $this->parser->getSchedule();
+ $minutesBefore = isset($data['minutes-before']) ? (int)$data['minutes-before'] : 15;
+ $minutesAfter = isset($data['minutes-after']) ? (int)$data['minutes-after'] : 15;
+ $newRooms = $this->newRooms($schedule->getRooms());
+ return array_merge(
+ $this->shiftsDiff($schedule, $scheduleUrl, $shiftType, $minutesBefore, $minutesAfter),
+ [$newRooms, $shiftType, $scheduleUrl, $schedule, $minutesBefore, $minutesAfter]
+ );
+ }
+
+ /**
+ * @param string $name
+ * @return Collection
+ */
+ protected function getFromSession(string $name): Collection
+ {
+ $data = Collection::make(Arr::flatten($this->session->get($name, [])));
+ $this->session->remove($name);
+
+ return $data;
+ }
+
+ /**
+ * @param Room[] $scheduleRooms
+ * @return Room[]
+ */
+ protected function newRooms(array $scheduleRooms): array
+ {
+ $newRooms = [];
+ $allRooms = $this->getAllRooms();
+
+ foreach ($scheduleRooms as $room) {
+ if ($allRooms->where('name', $room->getName())->count()) {
+ continue;
+ }
+
+ $newRooms[] = $room;
+ }
+
+ return $newRooms;
+ }
+
+ /**
+ * @param Schedule $schedule
+ * @param ScheduleUrl $scheduleUrl
+ * @param int $shiftType
+ * @param int $minutesBefore
+ * @param int $minutesAfter
+ * @return Event[]
+ */
+ protected function shiftsDiff(
+ Schedule $schedule,
+ ScheduleUrl $scheduleUrl,
+ int $shiftType,
+ int $minutesBefore,
+ int $minutesAfter
+ ): array {
+ /** @var Event[] $newEvents */
+ $newEvents = [];
+ /** @var Event[] $changeEvents */
+ $changeEvents = [];
+ /** @var Event[] $scheduleEvents */
+ $scheduleEvents = [];
+ /** @var Event[] $deleteEvents */
+ $deleteEvents = [];
+ $rooms = $this->getAllRooms();
+
+ foreach ($schedule->getDay() as $day) {
+ foreach ($day->getRoom() as $room) {
+ foreach ($room->getEvent() as $event) {
+ $scheduleEvents[$event->getGuid()] = $event;
+
+ $event->getDate()->subMinutes($minutesBefore);
+ $event->getEndDate()->addMinutes($minutesAfter);
+ }
+ }
+ }
+
+ $scheduleEventsGuidList = array_keys($scheduleEvents);
+ $existingShifts = $this->getScheduleShiftsByGuid($scheduleUrl, $scheduleEventsGuidList);
+ foreach ($existingShifts as $shift) {
+ $guid = $shift->guid;
+ $shift = $this->loadShift($shift->shift_id);
+ $event = $scheduleEvents[$guid];
+
+ if (
+ $shift->title != $event->getTitle()
+ || $shift->shift_type_id != $shiftType
+ || Carbon::createFromTimestamp($shift->start) != $event->getDate()
+ || Carbon::createFromTimestamp($shift->end) != $event->getEndDate()
+ || $shift->room_id != $rooms->where('name', $event->getRoom()->getName())->first()->id
+ || $shift->url != $event->getUrl()
+ ) {
+ $changeEvents[$guid] = $event;
+ }
+
+ unset($scheduleEvents[$guid]);
+ }
+
+ foreach ($scheduleEvents as $scheduleEvent) {
+ $newEvents[$scheduleEvent->getGuid()] = $scheduleEvent;
+ }
+
+ $scheduleShifts = $this->getScheduleShiftsWhereNotGuid($scheduleUrl, $scheduleEventsGuidList);
+ foreach ($scheduleShifts as $shift) {
+ $event = $this->eventFromScheduleShift($shift);
+ $deleteEvents[$event->getGuid()] = $event;
+ }
+
+ return [$newEvents, $changeEvents, $deleteEvents];
+ }
+
+ /**
+ * @param ScheduleShift $scheduleShift
+ * @return Event
+ */
+ protected function eventFromScheduleShift(ScheduleShift $scheduleShift): Event
+ {
+ $shift = $this->loadShift($scheduleShift->shift_id);
+ $start = Carbon::createFromTimestamp($shift->start);
+ $end = Carbon::createFromTimestamp($shift->end);
+ $duration = $start->diff($end);
+
+ $event = new Event(
+ $scheduleShift->guid,
+ 0,
+ new Room($shift->room_name),
+ $shift->title,
+ '',
+ 'n/a',
+ Carbon::createFromTimestamp($shift->start),
+ $start->format('H:i'),
+ $duration->format('%H:%I'),
+ '',
+ '',
+ ''
+ );
+
+ return $event;
+ }
+
+ /**
+ * @return Collection
+ */
+ protected function getAllRooms(): Collection
+ {
+ return new Collection($this->db->select('SELECT RID as id, Name as name FROM Room'));
+ }
+
+ /**
+ * @param ScheduleUrl $scheduleUrl
+ * @param string[] $events
+ * @return QueryBuilder[]|DatabaseCollection|ScheduleShift[]
+ */
+ protected function getScheduleShiftsByGuid(ScheduleUrl $scheduleUrl, array $events)
+ {
+ return ScheduleShift::query()
+ ->whereIn('guid', $events)
+ ->where('schedule_id', $scheduleUrl->id)
+ ->get();
+ }
+
+ /**
+ * @param ScheduleUrl $scheduleUrl
+ * @param string[] $events
+ * @return QueryBuilder[]|DatabaseCollection|ScheduleShift[]
+ */
+ protected function getScheduleShiftsWhereNotGuid(ScheduleUrl $scheduleUrl, array $events)
+ {
+ return ScheduleShift::query()
+ ->whereNotIn('guid', $events)
+ ->where('schedule_id', $scheduleUrl->id)
+ ->get();
+ }
+
+ /**
+ * @param $id
+ * @return stdClass|null
+ */
+ protected function loadShift($id): ?stdClass
+ {
+ return $this->db->selectOne(
+ '
+ SELECT
+ s.SID AS id,
+ s.title,
+ s.start,
+ s.end,
+ s.shifttype_id AS shift_type_id,
+ s.RID AS room_id,
+ r.Name AS room_name,
+ s.URL as url
+ FROM Shifts AS s
+ LEFT JOIN Room r on s.RID = r.RID
+ WHERE SID = ?
+ ',
+ [$id]
+ );
+ }
+
+ /**
+ * @return string[]
+ */
+ protected function getShiftTypes()
+ {
+ $return = [];
+ /** @var stdClass[] $shiftTypes */
+ $shiftTypes = $this->db->select('SELECT t.id, t.name FROM ShiftTypes AS t');
+
+ foreach ($shiftTypes as $shiftType) {
+ $return[$shiftType->id] = $shiftType->name;
+ }
+
+ return $return;
+ }
+
+ /**
+ * @param string $scheduleUrl
+ * @return ScheduleUrl
+ */
+ protected function getScheduleUrl(string $scheduleUrl): ScheduleUrl
+ {
+ if (!$schedule = ScheduleUrl::whereUrl($scheduleUrl)->first()) {
+ $schedule = new ScheduleUrl(['url' => $scheduleUrl]);
+ $schedule->save();
+
+ $this->log('Created schedule "{schedule}"', ['schedule' => $schedule->url]);
+ }
+
+ return $schedule;
+ }
+
+ /**
+ * @param string $message
+ * @param array $context
+ */
+ protected function log(string $message, array $context = []): void
+ {
+ $user = auth()->user();
+ $message = sprintf('%s (%u): %s', $user->name, $user->id, $message);
+
+ $this->log->info($message, $context);
+ }
+}
diff --git a/includes/sys_menu.php b/includes/sys_menu.php
index 3bb061ce..01a4b6d2 100644
--- a/includes/sys_menu.php
+++ b/includes/sys_menu.php
@@ -108,30 +108,38 @@ function make_navigation()
$admin_menu = [];
$admin_pages = [
- 'admin_arrive' => __('Arrived angels'),
- 'admin_active' => __('Active angels'),
- 'admin_user' => __('All Angels'),
- 'admin_free' => __('Free angels'),
- 'admin_questions' => __('Answer questions'),
- 'shifttypes' => __('Shifttypes'),
- 'admin_shifts' => __('Create shifts'),
- 'admin_rooms' => __('Rooms'),
- 'admin_groups' => __('Grouprights'),
- 'admin_import' => __('Frab import'),
- 'admin_log' => __('Log'),
- 'admin_event_config' => __('Event config'),
+ 'admin_arrive' => 'Arrived angels',
+ 'admin_active' => 'Active angels',
+ 'admin_user' => 'All Angels',
+ 'admin_free' => 'Free angels',
+ 'admin_questions' => 'Answer questions',
+ 'shifttypes' => 'Shifttypes',
+ 'admin_shifts' => 'Create shifts',
+ 'admin_rooms' => 'Rooms',
+ 'admin_groups' => 'Grouprights',
+ 'admin/schedule' => ['schedule.import', 'schedule.import'],
+ 'admin_log' => 'Log',
+ 'admin_event_config' => 'Event config',
];
if (config('autoarrive')) {
unset($admin_pages['admin_arrive']);
}
- foreach ($admin_pages as $menu_page => $title) {
- if (auth()->can($menu_page)) {
+ foreach ($admin_pages as $menu_page => $options) {
+ $options = (array)$options;
+ $permissions = $menu_page;
+ $title = $options[0];
+
+ if (isset($options[1])) {
+ $permissions = $options[1];
+ }
+
+ if (auth()->can($permissions)) {
$admin_menu[] = toolbar_item_link(
page_link_to($menu_page),
'',
- $title,
+ __($title),
$menu_page == $page
);
}
diff --git a/includes/sys_template.php b/includes/sys_template.php
index fad207a9..cf4c64aa 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -410,42 +410,6 @@ function table_buttons($buttons = [])
}
/**
- * @param string $str
- * @param int $length
- * @return string
- */
-function shorten($str, $length = 50)
-{
- if (strlen($str) < $length) {
- return $str;
- }
- return '<span title="' . htmlentities($str, ENT_COMPAT, 'UTF-8') . '">'
- . substr($str, 0, $length - 3)
- . '...</span>';
-}
-
-/**
- * @param array[] $array
- * @return string
- */
-function table_body($array)
-{
- $html = '';
- foreach ($array as $line) {
- $html .= '<tr>';
- if (is_array($line)) {
- foreach ($line as $td) {
- $html .= '<td>' . $td . '</td>';
- }
- } else {
- $html .= '<td>' . $line . '</td>';
- }
- $html .= '</tr>';
- }
- return $html;
-}
-
-/**
* @param string $msg
* @return mixed
*/
diff --git a/resources/lang/de_DE/additional.po b/resources/lang/de_DE/additional.po
index 00eb90b3..ffbd7792 100644
--- a/resources/lang/de_DE/additional.po
+++ b/resources/lang/de_DE/additional.po
@@ -34,3 +34,36 @@ msgstr "Deine Passwörter stimmen nicht überein."
msgid "validation.password_confirmation.required"
msgstr "Du musst dein Passwort bestätigen."
+
+msgid "schedule.import"
+msgstr "Programm importieren"
+
+msgid "schedule.import.request-error"
+msgstr "Das Programm konnte nicht abgerufen werden."
+
+msgid "schedule.import.read-error"
+msgstr "Das Programm konnte nicht gelesen werden."
+
+msgid "schedule.import.invalid-shift-type"
+msgstr "Der Schichttyp konnte nicht gefunden werden."
+
+msgid "schedule.import.success"
+msgstr "Das Programm wurde erfolgreich importiert."
+
+msgid "validation.schedule-url.required"
+msgstr "Bitte gib eine Programm URL an."
+
+msgid "validation.schedule-url.url"
+msgstr "Die Programm URL muss eine URL sein."
+
+msgid "validation.shift-type.required"
+msgstr "Der Schichttyp ist erforderlich."
+
+msgid "validation.shift-type.int"
+msgstr "Der Schichttyp muss eine Zahl sein."
+
+msgid "validation.minutes-before.int"
+msgstr "Die Minuten vor dem Talk müssen eine Zahl sein."
+
+msgid "validation.minutes-after.int"
+msgstr "Die Minuten nach dem Talk müssen eine Zahl sein."
diff --git a/resources/lang/de_DE/default.po b/resources/lang/de_DE/default.po
index d5a6c59e..d5f30f22 100644
--- a/resources/lang/de_DE/default.po
+++ b/resources/lang/de_DE/default.po
@@ -2806,3 +2806,60 @@ msgstr ""
#~ msgid "auth.no-nickname"
#~ msgstr "Gib bitte einen Nick an."
+
+msgid "form.load_schedule"
+msgstr "Programm laden"
+
+msgid "form.import"
+msgstr "Importieren"
+
+msgid "schedule.import.title"
+msgstr "Programm importieren"
+
+msgid "schedule.import.text"
+msgstr "Dieser Import erstellt Räume and erstellt, aktualisiert und löscht Schichten anhand des schedule.xml exportes."
+
+msgid "schedule.import.load.title"
+msgstr "Programm importieren: Vorschau"
+
+msgid "schedule.import.load.info"
+msgstr "Importiere \"%s\" (Version \"%s\")"
+
+msgid "schedule.url"
+msgstr "Programm URL (schedule.xml)"
+
+msgid "schedule.shift-type"
+msgstr "Schichttyp"
+
+msgid "schedule.minutes-before"
+msgstr "Minuten vor Talk beginn hinzufügen"
+
+msgid "schedule.minutes-after"
+msgstr "Minuten nach Talk ende hinzufügen"
+
+msgid "schedule.import.rooms.add"
+msgstr "Neue Räume"
+
+msgid "schedule.import.shifts.add"
+msgstr "Neue Schichten"
+
+msgid "schedule.import.shifts.update"
+msgstr "Zu aktualisierende Schichten"
+
+msgid "schedule.import.shifts.delete"
+msgstr "Zu löschende Schichten"
+
+msgid "schedule.import.rooms.name"
+msgstr "Name"
+
+msgid "schedule.import.shift.dates"
+msgstr "Zeit"
+
+msgid "schedule.import.shift.type"
+msgstr "Typ"
+
+msgid "schedule.import.shift.title"
+msgstr "Titel"
+
+msgid "schedule.import.shift.room"
+msgstr "Raum"
diff --git a/resources/lang/en_US/additional.po b/resources/lang/en_US/additional.po
index 9943b0ab..fa49ffdf 100644
--- a/resources/lang/en_US/additional.po
+++ b/resources/lang/en_US/additional.po
@@ -32,3 +32,36 @@ msgstr "Your passwords are not equal."
msgid "validation.password_confirmation.required"
msgstr "You have to confirm your password."
+
+msgid "schedule.import"
+msgstr "Import schedule"
+
+msgid "schedule.import.request-error"
+msgstr "The schedule could not be requested."
+
+msgid "schedule.import.read-error"
+msgstr "Unable to parse schedule."
+
+msgid "schedule.import.invalid-shift-type"
+msgstr "The shift type can't not be found."
+
+msgid "schedule.import.success"
+msgstr "Schedule import successful."
+
+msgid "validation.schedule-url.required"
+msgstr "The schedule URL is required."
+
+msgid "validation.schedule-url.url"
+msgstr "The schedule URL needs to be of type URL."
+
+msgid "validation.shift-type.required"
+msgstr "The shift type is required."
+
+msgid "validation.shift-type.int"
+msgstr "The shift type has to ba a number."
+
+msgid "validation.minutes-before.int"
+msgstr "The minutes before the talk have to be an integer."
+
+msgid "validation.minutes-after.int"
+msgstr "The minutes after the talk have to be an integer."
diff --git a/resources/lang/en_US/default.po b/resources/lang/en_US/default.po
index cfb587f1..4ee92c78 100644
--- a/resources/lang/en_US/default.po
+++ b/resources/lang/en_US/default.po
@@ -45,3 +45,63 @@ msgstr ""
"Please have a look at the "
"[contributors list on GitHub](https://github.com/engelsystem/engelsystem/graphs/contributors)"
" for a complete list."
+
+msgid "form.load_schedule"
+msgstr "Load schedule"
+
+msgid "form.import"
+msgstr "Import"
+
+msgid "schedule.import.title"
+msgstr "Import schedule"
+
+msgid "schedule.import.text"
+msgstr "This import creates rooms and creates, updates and deletes shifts according to the schedule.xml export."
+
+msgid "schedule.import.load.title"
+msgstr "Import schedule: Preview"
+
+msgid "schedule.import.load.info"
+msgstr "Import \"%s\" (version \"%s\")"
+
+msgid "schedule.url"
+msgstr "Schedule URL (schedule.xml)"
+
+msgid "schedule.shift-type"
+msgstr "Shift type"
+
+msgid "schedule.minutes-before"
+msgstr "Add minutes before talk begins"
+
+msgid "schedule.minutes-after"
+msgstr "Add minutes after talk ends"
+
+msgid "schedule.import.request_error"
+msgstr "Unable to load schedule."
+
+msgid "schedule.import.rooms.add"
+msgstr "Rooms to create"
+
+msgid "schedule.import.shifts.add"
+msgstr "Shifts to create"
+
+msgid "schedule.import.shifts.update"
+msgstr "Shifts to update"
+
+msgid "schedule.import.shifts.delete"
+msgstr "Shifts to delete"
+
+msgid "schedule.import.rooms.name"
+msgstr "Name"
+
+msgid "schedule.import.shift.dates"
+msgstr "Times"
+
+msgid "schedule.import.shift.type"
+msgstr "Type"
+
+msgid "schedule.import.shift.title"
+msgstr "Title"
+
+msgid "schedule.import.shift.room"
+msgstr "Room"
diff --git a/resources/views/admin/schedule/index.twig b/resources/views/admin/schedule/index.twig
new file mode 100644
index 00000000..08a9cb2b
--- /dev/null
+++ b/resources/views/admin/schedule/index.twig
@@ -0,0 +1,41 @@
+{% extends 'layouts/app.twig' %}
+{% import 'macros/base.twig' as m %}
+{% import 'macros/form.twig' as f %}
+
+{% set title %}{% block title %}{{ __('schedule.import.title') }}{% endblock %}{% endset %}
+
+{% block content %}
+ <div class="container">
+ <h1>{% block content_title %}{{ title }}{% endblock %}</h1>
+
+ {% for message in errors|default([]) %}
+ {{ m.alert(__(message), 'danger') }}
+ {% endfor %}
+ {% for message in success|default([]) %}
+ {{ m.alert(__(message), 'success') }}
+ {% endfor %}
+
+ <div class="row">
+ {% block row_content %}
+ <form method="POST" action="{{ url('/admin/schedule/load') }}">
+ {{ csrf() }}
+
+ <div class="col-md-12">
+ <p>{{ __('schedule.import.text') }}</p>
+ </div>
+
+ <div class="col-lg-6">
+ {{ f.input('schedule-url', __('schedule.url'), 'url', {'required': true}) }}
+
+ {{ f.select('shift-type', shift_types|default([]), __('schedule.shift-type')) }}
+
+ {{ f.input('minutes-before', __('schedule.minutes-before'), 'number', {'value': 15, 'required': true}) }}
+ {{ f.input('minutes-after', __('schedule.minutes-after'), 'number', {'value': 15, 'required': true}) }}
+
+ {{ f.submit(__('form.load_schedule')) }}
+ </div>
+ </form>
+ {% endblock %}
+ </div>
+ </div>
+{% endblock %}
diff --git a/resources/views/admin/schedule/load.twig b/resources/views/admin/schedule/load.twig
new file mode 100644
index 00000000..8c936bec
--- /dev/null
+++ b/resources/views/admin/schedule/load.twig
@@ -0,0 +1,79 @@
+{% extends 'admin/schedule/index.twig' %}
+{% import 'macros/form.twig' as f %}
+
+{% block title %}{{ __('schedule.import.load.title') }}{% endblock %}
+
+{% block row_content %}
+ <form method="POST" action="{{ url('/admin/schedule/import') }}">
+ {{ csrf() }}
+ {{ f.hidden('schedule-url', schedule_url) }}
+ {{ f.hidden('shift-type', shift_type) }}
+ {{ f.hidden('minutes-before', minutes_before) }}
+ {{ f.hidden('minutes-after', minutes_after) }}
+
+ <div class="col-lg-12">
+ <p>{{ __('schedule.import.load.info', [schedule.conference.title, schedule.version]) }}</p>
+
+ <h2>{{ __('schedule.import.rooms.add') }}</h2>
+ {{ _self.roomsTable(rooms.add) }}
+
+ <h2>{{ __('schedule.import.shifts.add') }}</h2>
+ {{ _self.shiftsTable(shifts.add) }}
+
+ <h2>{{ __('schedule.import.shifts.update') }}</h2>
+ {{ _self.shiftsTable(shifts.update) }}
+
+ <h2>{{ __('schedule.import.shifts.delete') }}</h2>
+ {{ _self.shiftsTable(shifts.delete) }}
+
+ {{ f.submit(__('form.import')) }}
+ </div>
+ </form>
+{% endblock %}
+
+
+{% macro roomsTable(rooms) %}
+ <div class="table-responsive">
+ <table class="table table-striped">
+ <thead>
+ <tr>
+ <th>{{ __('schedule.import.rooms.name') }}</th>
+ </tr>
+ </thead>
+
+ <tbody>
+ {% for room in rooms %}
+ <tr>
+ <td>{{ room.name }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
+{% endmacro %}
+
+{% macro shiftsTable(shifts) %}
+ <div class="table-responsive">
+ <table class="table table-striped">
+ <thead>
+ <tr>
+ <th>{{ __('schedule.import.shift.dates') }}</th>
+ <th>{{ __('schedule.import.shift.type') }}</th>
+ <th>{{ __('schedule.import.shift.title') }}</th>
+ <th>{{ __('schedule.import.shift.room') }}</th>
+ </tr>
+ </thead>
+
+ <tbody>
+ {% for shift in shifts %}
+ <tr>
+ <td>{{ shift.date.format(__('Y-m-d H:i')) }} - {{ shift.endDate.format(__('H:i')) }}</td>
+ <td>{{ shift.type }}</td>
+ <td>{{ shift.title }}{% if shift.subtitle %}<br><small>{{ shift.subtitle }}</small>{% endif %}</td>
+ <td>{{ shift.room.name }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
+{% endmacro %}
diff --git a/resources/views/macros/form.twig b/resources/views/macros/form.twig
index 6e821a28..ece85fcf 100644
--- a/resources/views/macros/form.twig
+++ b/resources/views/macros/form.twig
@@ -13,6 +13,19 @@
</div>
{%- endmacro %}
+{% macro select(name, data, label, selected) %}
+ <div class="form-group">
+ {% if label -%}
+ <label for="{{ name }}">{{ label }}</label>
+ {% endif %}
+ <select id="{{ name }}" name="{{ name }}" class="form-control">
+ {% for value,decription in data -%}
+ <option value="{{ value }}" {% if name == selected %} selected{% endif %}>{{ decription }}</option>
+ {% endfor %}
+ </select>
+ </div>
+{%- endmacro %}
+
{% macro hidden(name, value) %}
<input type="hidden" id="{{ name }}" name="{{ name }}" value="{{ value }}">
{%- endmacro %}
diff --git a/src/Helpers/Schedule/CalculatesTime.php b/src/Helpers/Schedule/CalculatesTime.php
new file mode 100644
index 00000000..c9dbeea1
--- /dev/null
+++ b/src/Helpers/Schedule/CalculatesTime.php
@@ -0,0 +1,24 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+trait CalculatesTime
+{
+ /**
+ * @param string $time
+ * @return int
+ */
+ protected function secondsFromTime(string $time): int
+ {
+ $seconds = 0;
+ $duration = explode(':', $time);
+
+ foreach (array_slice($duration, 0, 2) as $key => $times) {
+ $seconds += [60 * 60, 60][$key] * $times;
+ }
+
+ return $seconds;
+ }
+}
diff --git a/src/Helpers/Schedule/Conference.php b/src/Helpers/Schedule/Conference.php
new file mode 100644
index 00000000..0819d059
--- /dev/null
+++ b/src/Helpers/Schedule/Conference.php
@@ -0,0 +1,129 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+class Conference
+{
+ use CalculatesTime;
+
+ /** @var string required */
+ protected $title;
+
+ /** @var string required */
+ protected $acronym;
+
+ /** @var string|null */
+ protected $start;
+
+ /** @var string|null */
+ protected $end;
+
+ /** @var int|null */
+ protected $days;
+
+ /** @var string|null */
+ protected $timeslotDuration;
+
+ /** @var string|null */
+ protected $baseUrl;
+
+ /**
+ * Event constructor.
+ *
+ * @param string $title
+ * @param string $acronym
+ * @param string|null $start
+ * @param string|null $end
+ * @param int|null $days
+ * @param string|null $timeslotDuration
+ * @param string|null $baseUrl
+ */
+ public function __construct(
+ string $title,
+ string $acronym,
+ ?string $start = null,
+ ?string $end = null,
+ ?int $days = null,
+ ?string $timeslotDuration = null,
+ ?string $baseUrl = null
+ ) {
+ $this->title = $title;
+ $this->acronym = $acronym;
+ $this->start = $start;
+ $this->end = $end;
+ $this->days = $days;
+ $this->timeslotDuration = $timeslotDuration;
+ $this->baseUrl = $baseUrl;
+ }
+
+ /**
+ * @return string
+ */
+ public function getTitle(): string
+ {
+ return $this->title;
+ }
+
+ /**
+ * @return string
+ */
+ public function getAcronym(): string
+ {
+ return $this->acronym;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getStart(): ?string
+ {
+ return $this->start;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getEnd(): ?string
+ {
+ return $this->end;
+ }
+
+ /**
+ * @return int|null
+ */
+ public function getDays(): ?int
+ {
+ return $this->days;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getTimeslotDuration(): ?string
+ {
+ return $this->timeslotDuration;
+ }
+
+ /**
+ * @return int|null
+ */
+ public function getTimeslotDurationSeconds(): ?int
+ {
+ $duration = $this->getTimeslotDuration();
+ if (!$duration) {
+ return null;
+ }
+
+ return $this->secondsFromTime($duration);
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getBaseUrl(): ?string
+ {
+ return $this->baseUrl;
+ }
+}
diff --git a/src/Helpers/Schedule/Day.php b/src/Helpers/Schedule/Day.php
new file mode 100644
index 00000000..03106e8f
--- /dev/null
+++ b/src/Helpers/Schedule/Day.php
@@ -0,0 +1,88 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+use Carbon\Carbon;
+
+class Day
+{
+ /** @var string required */
+ protected $date;
+
+ /** @var Carbon required */
+ protected $start;
+
+ /** @var Carbon required */
+ protected $end;
+
+ /** @var int required */
+ protected $index;
+
+ /** @var Room[] */
+ protected $room;
+
+ /**
+ * Day constructor.
+ *
+ * @param string $date
+ * @param Carbon $start
+ * @param Carbon $end
+ * @param int $index
+ * @param Room[] $rooms
+ */
+ public function __construct(
+ string $date,
+ Carbon $start,
+ Carbon $end,
+ int $index,
+ array $rooms = []
+ ) {
+ $this->date = $date;
+ $this->start = $start;
+ $this->end = $end;
+ $this->index = $index;
+ $this->room = $rooms;
+ }
+
+ /**
+ * @return string
+ */
+ public function getDate(): string
+ {
+ return $this->date;
+ }
+
+ /**
+ * @return Carbon
+ */
+ public function getStart(): Carbon
+ {
+ return $this->start;
+ }
+
+ /**
+ * @return Carbon
+ */
+ public function getEnd(): Carbon
+ {
+ return $this->end;
+ }
+
+ /**
+ * @return int
+ */
+ public function getIndex(): int
+ {
+ return $this->index;
+ }
+
+ /**
+ * @return Room[]
+ */
+ public function getRoom(): array
+ {
+ return $this->room;
+ }
+}
diff --git a/src/Helpers/Schedule/Event.php b/src/Helpers/Schedule/Event.php
new file mode 100644
index 00000000..46970e7b
--- /dev/null
+++ b/src/Helpers/Schedule/Event.php
@@ -0,0 +1,337 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+use Carbon\Carbon;
+
+class Event
+{
+ use CalculatesTime;
+
+ /** @var string required globally unique */
+ protected $guid;
+
+ /** @var int required globally unique */
+ protected $id;
+
+ /** @var Room required, string in XML */
+ protected $room;
+
+ /** @var string required */
+ protected $title;
+
+ /** @var string required */
+ protected $subtitle;
+
+ /** @var string required */
+ protected $type;
+
+ /** @var Carbon required */
+ protected $date;
+
+ /** @var string required time (hh:mm:ss || hh:mm) */
+ protected $start;
+
+ /** @var string required (h?h:mm:ss || h?h:mm) */
+ protected $duration;
+
+ /** @var string required */
+ protected $abstract;
+
+ /** @var string required globally unique */
+ protected $slug;
+
+ /** @var string required */
+ protected $track;
+
+ /** @var string|null */
+ protected $logo;
+
+ /** @var string[] id => name */
+ protected $persons;
+
+ /** @var string|null two letter code */
+ protected $language;
+
+ /** @var string|null */
+ protected $description;
+
+ /** @var string|null license (and opt out in XML, null if not recorded, empty if no license defined) */
+ protected $recording;
+
+ /** @var array href => title */
+ protected $links;
+
+ /** @var array href => name */
+ protected $attachments;
+
+ /** @var string|null */
+ protected $url;
+
+ /** @var string|null */
+ protected $videoDownloadUrl;
+
+ /** @var Carbon Calculated */
+ protected $endDate;
+
+ /**
+ * Event constructor.
+ *
+ * @param string $guid
+ * @param int $id
+ * @param Room $room
+ * @param string $title
+ * @param string $subtitle
+ * @param string $type
+ * @param Carbon $date
+ * @param string $start
+ * @param string $duration
+ * @param string $abstract
+ * @param string $slug
+ * @param string $track
+ * @param string|null $logo
+ * @param string[] $persons
+ * @param string|null $language
+ * @param string|null $description
+ * @param string|null $recording license
+ * @param array $links
+ * @param array $attachments
+ * @param string|null $url
+ * @param string|null $videoDownloadUrl
+ */
+ public function __construct(
+ string $guid,
+ int $id,
+ Room $room,
+ string $title,
+ string $subtitle,
+ string $type,
+ Carbon $date,
+ string $start,
+ string $duration,
+ string $abstract,
+ string $slug,
+ string $track,
+ ?string $logo = null,
+ array $persons = [],
+ ?string $language = null,
+ ?string $description = null,
+ string $recording = '',
+ array $links = [],
+ array $attachments = [],
+ ?string $url = null,
+ ?string $videoDownloadUrl = null
+ ) {
+ $this->guid = $guid;
+ $this->id = $id;
+ $this->room = $room;
+ $this->title = $title;
+ $this->subtitle = $subtitle;
+ $this->type = $type;
+ $this->date = $date;
+ $this->start = $start;
+ $this->duration = $duration;
+ $this->abstract = $abstract;
+ $this->slug = $slug;
+ $this->track = $track;
+ $this->logo = $logo;
+ $this->persons = $persons;
+ $this->language = $language;
+ $this->description = $description;
+ $this->recording = $recording;
+ $this->links = $links;
+ $this->attachments = $attachments;
+ $this->url = $url;
+ $this->videoDownloadUrl = $videoDownloadUrl;
+
+ $this->endDate = $this->date
+ ->copy()
+ ->addSeconds($this->getDurationSeconds());
+ }
+
+ /**
+ * @return string
+ */
+ public function getGuid(): string
+ {
+ return $this->guid;
+ }
+
+ /**
+ * @return int
+ */
+ public function getId(): int
+ {
+ return $this->id;
+ }
+
+ /**
+ * @return Room
+ */
+ public function getRoom(): Room
+ {
+ return $this->room;
+ }
+
+ /**
+ * @return string
+ */
+ public function getTitle(): string
+ {
+ return $this->title;
+ }
+
+ /**
+ * @return string
+ */
+ public function getSubtitle(): string
+ {
+ return $this->subtitle;
+ }
+
+ /**
+ * @return string
+ */
+ public function getType(): string
+ {
+ return $this->type;
+ }
+
+ /**
+ * @return Carbon
+ */
+ public function getDate(): Carbon
+ {
+ return $this->date;
+ }
+
+ /**
+ * @return string
+ */
+ public function getStart(): string
+ {
+ return $this->start;
+ }
+
+ /**
+ * @return string
+ */
+ public function getDuration(): string
+ {
+ return $this->duration;
+ }
+
+ /**
+ * @return int
+ */
+ public function getDurationSeconds(): int
+ {
+ return $this->secondsFromTime($this->duration);
+ }
+
+ /**
+ * @return string
+ */
+ public function getAbstract(): string
+ {
+ return $this->abstract;
+ }
+
+ /**
+ * @return string
+ */
+ public function getSlug(): string
+ {
+ return $this->slug;
+ }
+
+ /**
+ * @return string
+ */
+ public function getTrack(): string
+ {
+ return $this->track;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getLogo(): ?string
+ {
+ return $this->logo;
+ }
+
+ /**
+ * @return string[]
+ */
+ public function getPersons(): array
+ {
+ return $this->persons;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getLanguage(): ?string
+ {
+ return $this->language;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getDescription(): ?string
+ {
+ return $this->description;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getRecording(): ?string
+ {
+ return $this->recording;
+ }
+
+ /**
+ * @return array
+ */
+ public function getLinks(): array
+ {
+ return $this->links;
+ }
+
+ /**
+ * @return array
+ */
+ public function getAttachments(): array
+ {
+ return $this->attachments;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getUrl(): ?string
+ {
+ return $this->url;
+ }
+
+ /**
+ * @return string|null
+ */
+ public function getVideoDownloadUrl(): ?string
+ {
+ return $this->videoDownloadUrl;
+ }
+
+ /**
+ * @return Carbon
+ */
+ public function getEndDate(): Carbon
+ {
+ return $this->endDate;
+ }
+}
diff --git a/src/Helpers/Schedule/Room.php b/src/Helpers/Schedule/Room.php
new file mode 100644
index 00000000..45a09f5f
--- /dev/null
+++ b/src/Helpers/Schedule/Room.php
@@ -0,0 +1,52 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+class Room
+{
+ /** @var string required */
+ protected $name;
+
+ /** @var Event[] */
+ protected $event;
+
+ /**
+ * Room constructor.
+ *
+ * @param string $name
+ * @param Event[] $events
+ */
+ public function __construct(
+ string $name,
+ array $events = []
+ ) {
+ $this->name = $name;
+ $this->event = $events;
+ }
+
+ /**
+ * @return string
+ */
+ public function getName(): string
+ {
+ return $this->name;
+ }
+
+ /**
+ * @return Event[]
+ */
+ public function getEvent(): array
+ {
+ return $this->event;
+ }
+
+ /**
+ * @param Event[] $event
+ */
+ public function setEvent(array $event): void
+ {
+ $this->event = $event;
+ }
+}
diff --git a/src/Helpers/Schedule/Schedule.php b/src/Helpers/Schedule/Schedule.php
new file mode 100644
index 00000000..7150480c
--- /dev/null
+++ b/src/Helpers/Schedule/Schedule.php
@@ -0,0 +1,111 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+use Carbon\Carbon;
+
+class Schedule
+{
+ /** @var string */
+ protected $version;
+
+ /** @var Conference */
+ protected $conference;
+
+ /** @var Day[] */
+ protected $day;
+
+ /**
+ * @param string $version
+ * @param Conference $conference
+ * @param Day[] $days
+ */
+ public function __construct(
+ string $version,
+ Conference $conference,
+ array $days
+ ) {
+ $this->version = $version;
+ $this->conference = $conference;
+ $this->day = $days;
+ }
+
+ /**
+ * @return string
+ */
+ public function getVersion(): string
+ {
+ return $this->version;
+ }
+
+ /**
+ * @return Conference
+ */
+ public function getConference(): Conference
+ {
+ return $this->conference;
+ }
+
+ /**
+ * @return Day[]
+ */
+ public function getDay(): array
+ {
+ return $this->day;
+ }
+
+ /**
+ * @return Room[]
+ */
+ public function getRooms(): array
+ {
+ $rooms = [];
+ foreach ($this->day as $day) {
+ foreach ($day->getRoom() as $room) {
+ $name = $room->getName();
+ $rooms[$name] = $room;
+ }
+ }
+
+ return $rooms;
+ }
+
+
+ /**
+ * @return Carbon|null
+ */
+ public function getStartDateTime(): ?Carbon
+ {
+ $start = null;
+ foreach ($this->day as $day) {
+ $time = $day->getStart();
+ if ($time > $start && $start) {
+ continue;
+ }
+
+ $start = $time;
+ }
+
+ return $start;
+ }
+
+ /**
+ * @return Carbon|null
+ */
+ public function getEndDateTime(): ?Carbon
+ {
+ $end = null;
+ foreach ($this->day as $day) {
+ $time = $day->getEnd();
+ if ($time < $end && $end) {
+ continue;
+ }
+
+ $end = $time;
+ }
+
+ return $end;
+ }
+}
diff --git a/src/Helpers/Schedule/XmlParser.php b/src/Helpers/Schedule/XmlParser.php
new file mode 100644
index 00000000..1492aaca
--- /dev/null
+++ b/src/Helpers/Schedule/XmlParser.php
@@ -0,0 +1,172 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Engelsystem\Helpers\Schedule;
+
+use Carbon\Carbon;
+use SimpleXMLElement;
+
+class XmlParser
+{
+ /** @var SimpleXMLElement */
+ protected $scheduleXML;
+
+ /** @var Schedule */
+ protected $schedule;
+
+ /**
+ * @param string $xml
+ * @return bool
+ */
+ public function load(string $xml): bool
+ {
+ $this->scheduleXML = simplexml_load_string($xml);
+
+ if (!$this->scheduleXML) {
+ return false;
+ }
+
+ $this->parseXml();
+
+ return true;
+ }
+
+ /**
+ * Parse the predefined XML content
+ */
+ protected function parseXml(): void
+ {
+ $version = $this->getFirstXpathContent('version');
+ $conference = new Conference(
+ $this->getFirstXpathContent('conference/title'),
+ $this->getFirstXpathContent('conference/acronym'),
+ $this->getFirstXpathContent('conference/start'),
+ $this->getFirstXpathContent('conference/end'),
+ (int)$this->getFirstXpathContent('conference/days'),
+ $this->getFirstXpathContent('conference/timeslot_duration'),
+ $this->getFirstXpathContent('conference/base_url')
+ );
+ $days = [];
+
+ foreach ($this->scheduleXML->xpath('day') as $day) {
+ $rooms = [];
+
+ foreach ($day->xpath('room') as $roomElement) {
+ $room = new Room(
+ (string)$roomElement->attributes()['name']
+ );
+
+ $events = $this->parseEvents($roomElement->xpath('event'), $room);
+ $room->setEvent($events);
+ $rooms[] = $room;
+ }
+
+ $days[] = new Day(
+ (string)$day->attributes()['date'],
+ new Carbon($day->attributes()['start']),
+ new Carbon($day->attributes()['end']),
+ (int)$day->attributes()['index'],
+ $rooms
+ );
+ }
+
+ $this->schedule = new Schedule(
+ $version,
+ $conference,
+ $days
+ );
+ }
+
+ /**
+ * @param SimpleXMLElement[] $eventElements
+ * @param Room $room
+ * @return array
+ */
+ protected function parseEvents(array $eventElements, Room $room): array
+ {
+ $events = [];
+
+ foreach ($eventElements as $event) {
+ $persons = $this->getListFromSequence($event, 'persons', 'person', 'id');
+ $links = $this->getListFromSequence($event, 'links', 'link', 'href');
+ $attachments = $this->getListFromSequence($event, 'attachments', 'attachment', 'href');
+
+ $recording = '';
+ $recordingElement = $event->xpath('recording')[0];
+ if ($this->getFirstXpathContent('optout', $recordingElement) == 'false') {
+ $recording = $this->getFirstXpathContent('license', $recordingElement);
+ }
+
+ $events[] = new Event(
+ (string)$event->attributes()['guid'],
+ (int)$event->attributes()['id'],
+ $room,
+ $this->getFirstXpathContent('title', $event),
+ $this->getFirstXpathContent('subtitle', $event),
+ $this->getFirstXpathContent('type', $event),
+ new Carbon($this->getFirstXpathContent('date', $event)),
+ $this->getFirstXpathContent('start', $event),
+ $this->getFirstXpathContent('duration', $event),
+ $this->getFirstXpathContent('abstract', $event),
+ $this->getFirstXpathContent('slug', $event),
+ $this->getFirstXpathContent('track', $event),
+ $this->getFirstXpathContent('logo', $event) ?: null,
+ $persons,
+ $this->getFirstXpathContent('language', $event) ?: null,
+ $this->getFirstXpathContent('description', $event) ?: null,
+ $recording,
+ $links,
+ $attachments,
+ $this->getFirstXpathContent('url', $event) ?: null,
+ $this->getFirstXpathContent('video_download_url', $event) ?: null
+ );
+ }
+
+ return $events;
+ }
+
+ /**
+ * @param string $path
+ * @param SimpleXMLElement|null $xml
+ * @return string
+ */
+ protected function getFirstXpathContent(string $path, ?SimpleXMLElement $xml = null): string
+ {
+ $element = ($xml ?: $this->scheduleXML)->xpath($path);
+
+ return $element ? (string)$element[0] : '';
+ }
+
+ /**
+ * Resolves a list from a sequence of elements
+ *
+ * @param SimpleXMLElement $element
+ * @param string $firstElement
+ * @param string $secondElement
+ * @param string $idAttribute
+ * @return array
+ */
+ protected function getListFromSequence(
+ SimpleXMLElement $element,
+ string $firstElement,
+ string $secondElement,
+ string $idAttribute
+ ): array {
+ $items = [];
+
+ foreach ($element->xpath($firstElement)[0]->xpath($secondElement) as $item) {
+ $items[(string)$item->attributes()[$idAttribute]] = (string)$item;
+ }
+
+ return $items;
+ }
+
+ /**
+ * @return Schedule
+ */
+ public function getSchedule(): Schedule
+ {
+ return $this->schedule;
+ }
+}
diff --git a/src/Http/GuzzleServiceProvider.php b/src/Http/GuzzleServiceProvider.php
new file mode 100644
index 00000000..f81a91f5
--- /dev/null
+++ b/src/Http/GuzzleServiceProvider.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace Engelsystem\Http;
+
+use Engelsystem\Container\ServiceProvider;
+use GuzzleHttp\Client as GuzzleClient;
+
+class GuzzleServiceProvider extends ServiceProvider
+{
+ public function register()
+ {
+ $this->app->when(GuzzleClient::class)
+ ->needs('$config')
+ ->give(
+ function () {
+ return [
+ // No exception on >= 400 responses
+ 'http_errors' => false,
+ // Wait max n seconds for a response
+ 'timeout' => 2.0,
+ ];
+ }
+ );
+ }
+}
diff --git a/src/Middleware/LegacyMiddleware.php b/src/Middleware/LegacyMiddleware.php
index e516f1f3..5e08858d 100644
--- a/src/Middleware/LegacyMiddleware.php
+++ b/src/Middleware/LegacyMiddleware.php
@@ -205,10 +205,6 @@ class LegacyMiddleware implements MiddlewareInterface
$title = admin_groups_title();
$content = admin_groups();
return [$title, $content];
- case 'admin_import':
- $title = admin_import_title();
- $content = admin_import();
- return [$title, $content];
case 'admin_shifts':
$title = admin_shifts_title();
$content = admin_shifts();
@@ -239,9 +235,15 @@ class LegacyMiddleware implements MiddlewareInterface
return response($content, (int)$page);
}
- return response(view('layouts/app', [
- 'title' => $title,
- 'content' => msg() . $content,
- ]), 200);
+ return response(
+ view(
+ 'layouts/app',
+ [
+ 'title' => $title,
+ 'content' => msg() . $content,
+ ]
+ ),
+ 200
+ );
}
}
diff --git a/src/Models/Shifts/Schedule.php b/src/Models/Shifts/Schedule.php
new file mode 100644
index 00000000..c1eb2d9e
--- /dev/null
+++ b/src/Models/Shifts/Schedule.php
@@ -0,0 +1,31 @@
+<?php
+
+namespace Engelsystem\Models\Shifts;
+
+use Engelsystem\Models\BaseModel;
+use Illuminate\Database\Eloquent\Collection;
+use Illuminate\Database\Eloquent\Relations\HasMany;
+use Illuminate\Database\Query\Builder as QueryBuilder;
+
+/**
+ * @property int $id
+ * @property string $url
+ *
+ * @property-read QueryBuilder|Collection|ScheduleShift[] $scheduleShifts
+ *
+ * @method static QueryBuilder|Schedule[] whereId($value)
+ * @method static QueryBuilder|Schedule[] whereUrl($value)
+ */
+class Schedule extends BaseModel
+{
+ /** @var array Values that are mass assignable */
+ protected $fillable = ['url'];
+
+ /**
+ * @return HasMany
+ */
+ public function scheduleShifts()
+ {
+ return $this->hasMany(ScheduleShift::class);
+ }
+}
diff --git a/src/Models/Shifts/ScheduleShift.php b/src/Models/Shifts/ScheduleShift.php
new file mode 100644
index 00000000..368c60b1
--- /dev/null
+++ b/src/Models/Shifts/ScheduleShift.php
@@ -0,0 +1,38 @@
+<?php
+
+namespace Engelsystem\Models\Shifts;
+
+use Engelsystem\Models\BaseModel;
+use Illuminate\Database\Eloquent\Relations\BelongsTo;
+use Illuminate\Database\Query\Builder as QueryBuilder;
+
+/**
+ * @property int $shift_id
+ * @property int $schedule_id
+ * @property string $guid
+ *
+ * @property-read QueryBuilder|Schedule $schedule
+ *
+ * @method static QueryBuilder|ScheduleShift[] whereShiftId($value)
+ * @method static QueryBuilder|ScheduleShift[] whereScheduleId($value)
+ * @method static QueryBuilder|ScheduleShift[] whereGuid($value)
+ */
+class ScheduleShift extends BaseModel
+{
+ /** @var string The primary key for the model */
+ protected $primaryKey = 'shift_id';
+
+ /** @var string Required because it is not schedule_shifts */
+ protected $table = 'schedule_shift';
+
+ /** @var array Values that are mass assignable */
+ protected $fillable = ['shift_id', 'schedule_id', 'guid'];
+
+ /**
+ * @return BelongsTo
+ */
+ public function schedule()
+ {
+ return $this->belongsTo(Schedule::class);
+ }
+}
diff --git a/tests/Feature/Model/RoomModelTest.php b/tests/Feature/Model/RoomModelTest.php
index 9908082a..3ed4bcd2 100644
--- a/tests/Feature/Model/RoomModelTest.php
+++ b/tests/Feature/Model/RoomModelTest.php
@@ -13,7 +13,7 @@ class RoomModelTest extends TestCase
*/
public function createRoom()
{
- $this->room_id = Room_create('test', false, null, null);
+ $this->room_id = Room_create('test', null, null);
}
/**
diff --git a/tests/Unit/HasDatabase.php b/tests/Unit/HasDatabase.php
index dbaa253e..3fe29e4a 100644
--- a/tests/Unit/HasDatabase.php
+++ b/tests/Unit/HasDatabase.php
@@ -36,14 +36,17 @@ trait HasDatabase
$this->database
->getConnection()
->table('migrations')
- ->insert([
- ['migration' => '2018_01_01_000001_import_install_sql'],
- ['migration' => '2018_01_01_000002_import_update_sql'],
- ['migration' => '2018_01_01_000003_fix_old_tables'],
- ['migration' => '2018_01_01_000004_cleanup_group_privileges'],
- ['migration' => '2018_01_01_000005_add_angel_supporter_permissions'],
- ['migration' => '2018_12_27_000000_fix_missing_arrival_dates'],
- ]);
+ ->insert(
+ [
+ ['migration' => '2018_01_01_000001_import_install_sql'],
+ ['migration' => '2018_01_01_000002_import_update_sql'],
+ ['migration' => '2018_01_01_000003_fix_old_tables'],
+ ['migration' => '2018_01_01_000004_cleanup_group_privileges'],
+ ['migration' => '2018_01_01_000005_add_angel_supporter_permissions'],
+ ['migration' => '2018_12_27_000000_fix_missing_arrival_dates'],
+ ['migration' => '2019_09_07_000000_migrate_admin_schedule_permissions'],
+ ]
+ );
$migration->run(__DIR__ . '/../../db/migrations');
}
diff --git a/tests/Unit/Helpers/Schedule/Assets/schedule.xml b/tests/Unit/Helpers/Schedule/Assets/schedule.xml
new file mode 100644
index 00000000..45aaaf35
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/Assets/schedule.xml
@@ -0,0 +1,46 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<schedule>
+ <version>Some version string</version>
+ <conference>
+ <title>Test Event</title>
+ <acronym>Test1</acronym>
+ <start>2042-01-01</start>
+ <end>2042-01-01</end>
+ <days>1</days>
+ <timeslot_duration>00:15</timeslot_duration>
+ <base_url>https://foo.bar/baz/schedule/</base_url>
+ </conference>
+ <day index='1' date='2042-01-01' start='2042-01-01T01:00:00+02:00' end='2042-01-01T22:59:00+02:00'>
+ <room name='Rooming'>
+ <event guid='e427cfa9-9ba1-4b14-a99f-bce83ffe5a1c' id='1337'>
+ <date>2042-01-01T12:30:00+02:00</date>
+ <title>Foo Bar Test</title>
+ <subtitle>Some sub</subtitle>
+ <start>12:30</start>
+ <duration>00:30</duration>
+ <room>Rooming</room>
+ <slug>foo-bar-test</slug>
+ <recording>
+ <license>WTFPL</license>
+ <optout>false</optout>
+ </recording>
+ <track>Testing</track>
+ <type>Talk</type>
+ <language>de</language>
+ <abstract>Foo bar is da best</abstract>
+ <description>Any describing stuff?</description>
+ <url>https://foo.bar/baz/schedule/ipsum</url>
+ <logo>https://lorem.ipsum/foo/bar.png</logo>
+ <persons>
+ <person id='1234'>Some Person</person>
+ </persons>
+ <links>
+ <link href="https://foo.bar">Some Foo Bar</link>
+ </links>
+ <attachments>
+ <attachment href="https://foo.bar/stuff.pdf">A PDF File</attachment>
+ </attachments>
+ </event>
+ </room>
+ </day>
+</schedule>
diff --git a/tests/Unit/Helpers/Schedule/CalculatesTimeTest.php b/tests/Unit/Helpers/Schedule/CalculatesTimeTest.php
new file mode 100644
index 00000000..8f0123e9
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/CalculatesTimeTest.php
@@ -0,0 +1,33 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Engelsystem\Helpers\Schedule\CalculatesTime;
+use Engelsystem\Test\Unit\TestCase;
+
+class CalculatesTimeTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\CalculatesTime::secondsFromTime
+ */
+ public function testSecondsFromTime()
+ {
+ $calc = new class {
+ use CalculatesTime;
+
+ /**
+ * @param string $time
+ * @return int
+ */
+ public function calc(string $time): int
+ {
+ return $this->secondsFromTime($time);
+ }
+ };
+
+ $this->assertEquals(0, $calc->calc('0:00'));
+ $this->assertEquals(60, $calc->calc('0:01'));
+ $this->assertEquals(60 * 60, $calc->calc('01:00'));
+ $this->assertEquals(60 * 60 * 10 + 60 * 11, $calc->calc('10:11'));
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/ConferenceTest.php b/tests/Unit/Helpers/Schedule/ConferenceTest.php
new file mode 100644
index 00000000..959e272b
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/ConferenceTest.php
@@ -0,0 +1,49 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Engelsystem\Helpers\Schedule\Conference;
+use Engelsystem\Test\Unit\TestCase;
+
+class ConferenceTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Conference::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getTitle
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getAcronym
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getStart
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getEnd
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getDays
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getTimeslotDuration
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getTimeslotDurationSeconds
+ * @covers \Engelsystem\Helpers\Schedule\Conference::getBaseUrl
+ */
+ public function testCreate()
+ {
+ $conference = new Conference('Doing stuff', 'DS');
+ $this->assertEquals('Doing stuff', $conference->getTitle());
+ $this->assertEquals('DS', $conference->getAcronym());
+ $this->assertNull($conference->getStart());
+ $this->assertNull($conference->getEnd());
+ $this->assertNull($conference->getDays());
+ $this->assertNull($conference->getTimeslotDuration());
+ $this->assertNull($conference->getTimeslotDurationSeconds());
+ $this->assertNull($conference->getBaseUrl());
+
+ $conference = new Conference(
+ 'Doing stuff',
+ 'DS',
+ '2042-01-01',
+ '2042-01-10',
+ 10,
+ '00:10',
+ 'https://foo.bar/schedule'
+ );
+ $this->assertEquals('2042-01-01', $conference->getStart());
+ $this->assertEquals('2042-01-10', $conference->getEnd());
+ $this->assertEquals(10, $conference->getDays());
+ $this->assertEquals('00:10', $conference->getTimeslotDuration());
+ $this->assertEquals(60 * 10, $conference->getTimeslotDurationSeconds());
+ $this->assertEquals('https://foo.bar/schedule', $conference->getBaseUrl());
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/DayTest.php b/tests/Unit/Helpers/Schedule/DayTest.php
new file mode 100644
index 00000000..65704181
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/DayTest.php
@@ -0,0 +1,47 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Carbon\Carbon;
+use Engelsystem\Helpers\Schedule\Day;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Test\Unit\TestCase;
+
+class DayTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Day::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Day::getDate
+ * @covers \Engelsystem\Helpers\Schedule\Day::getStart
+ * @covers \Engelsystem\Helpers\Schedule\Day::getEnd
+ * @covers \Engelsystem\Helpers\Schedule\Day::getIndex
+ * @covers \Engelsystem\Helpers\Schedule\Day::getRoom
+ */
+ public function testCreate()
+ {
+ $day = new Day(
+ '2000-01-01',
+ new Carbon('2000-01-01T03:00:00+01:00'),
+ new Carbon('2000-01-02T05:59:00+00:00'),
+ 1
+ );
+ $this->assertEquals('2000-01-01', $day->getDate());
+ $this->assertEquals('2000-01-01T03:00:00+01:00', $day->getStart()->format(Carbon::RFC3339));
+ $this->assertEquals('2000-01-02T05:59:00+00:00', $day->getEnd()->format(Carbon::RFC3339));
+ $this->assertEquals(1, $day->getIndex());
+ $this->assertEquals([], $day->getRoom());
+
+ $rooms = [
+ new Room('Foo'),
+ new Room('Bar'),
+ ];
+ $day = new Day(
+ '2001-01-01',
+ new Carbon('2001-01-01T03:00:00+01:00'),
+ new Carbon('2001-01-02T05:59:00+00:00'),
+ 1,
+ $rooms
+ );
+ $this->assertEquals($rooms, $day->getRoom());
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/EventTest.php b/tests/Unit/Helpers/Schedule/EventTest.php
new file mode 100644
index 00000000..262aeea7
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/EventTest.php
@@ -0,0 +1,145 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Carbon\Carbon;
+use Engelsystem\Helpers\Schedule\Event;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Test\Unit\TestCase;
+
+class EventTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Event::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Event::getGuid
+ * @covers \Engelsystem\Helpers\Schedule\Event::getId
+ * @covers \Engelsystem\Helpers\Schedule\Event::getRoom
+ * @covers \Engelsystem\Helpers\Schedule\Event::getTitle
+ * @covers \Engelsystem\Helpers\Schedule\Event::getSubtitle
+ * @covers \Engelsystem\Helpers\Schedule\Event::getType
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDate
+ * @covers \Engelsystem\Helpers\Schedule\Event::getStart
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDuration
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDurationSeconds
+ * @covers \Engelsystem\Helpers\Schedule\Event::getAbstract
+ * @covers \Engelsystem\Helpers\Schedule\Event::getSlug
+ * @covers \Engelsystem\Helpers\Schedule\Event::getTrack
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLogo
+ * @covers \Engelsystem\Helpers\Schedule\Event::getPersons
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLanguage
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDescription
+ * @covers \Engelsystem\Helpers\Schedule\Event::getRecording
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLinks
+ * @covers \Engelsystem\Helpers\Schedule\Event::getAttachments
+ * @covers \Engelsystem\Helpers\Schedule\Event::getUrl
+ * @covers \Engelsystem\Helpers\Schedule\Event::getVideoDownloadUrl
+ * @covers \Engelsystem\Helpers\Schedule\Event::getEndDate
+ */
+ public function testCreate()
+ {
+ $room = new Room('Foo');
+ $date = new Carbon('2020-12-28T19:30:00+00:00');
+ $event = new Event(
+ '0-1-2-3',
+ 1,
+ $room,
+ 'Some stuff',
+ 'sub stuff',
+ 'Talk',
+ $date,
+ '19:30:00',
+ '00:50',
+ 'Doing stuff is hard, plz try again',
+ '1-some-stuff',
+ 'Security'
+ );
+
+ $this->assertEquals('0-1-2-3', $event->getGuid());
+ $this->assertEquals(1, $event->getId());
+ $this->assertEquals($room, $event->getRoom());
+ $this->assertEquals('Some stuff', $event->getTitle());
+ $this->assertEquals('sub stuff', $event->getSubtitle());
+ $this->assertEquals('Talk', $event->getType());
+ $this->assertEquals($date, $event->getDate());
+ $this->assertEquals('19:30:00', $event->getStart());
+ $this->assertEquals('00:50', $event->getDuration());
+ $this->assertEquals('Doing stuff is hard, plz try again', $event->getAbstract());
+ $this->assertEquals('1-some-stuff', $event->getSlug());
+ $this->assertEquals('Security', $event->getTrack());
+ $this->assertNull($event->getLogo());
+ $this->assertEquals([], $event->getPersons());
+ $this->assertNull($event->getLanguage());
+ $this->assertNull($event->getDescription());
+ $this->assertEquals('', $event->getRecording());
+ $this->assertEquals([], $event->getLinks());
+ $this->assertEquals([], $event->getAttachments());
+ $this->assertNull($event->getUrl());
+ $this->assertNull($event->getVideoDownloadUrl());
+ $this->assertEquals('2020-12-28T20:20:00+00:00', $event->getEndDate()->format(Carbon::RFC3339));
+ }
+
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Event::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Event::getGuid
+ * @covers \Engelsystem\Helpers\Schedule\Event::getId
+ * @covers \Engelsystem\Helpers\Schedule\Event::getRoom
+ * @covers \Engelsystem\Helpers\Schedule\Event::getTitle
+ * @covers \Engelsystem\Helpers\Schedule\Event::getSubtitle
+ * @covers \Engelsystem\Helpers\Schedule\Event::getType
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDate
+ * @covers \Engelsystem\Helpers\Schedule\Event::getStart
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDuration
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDurationSeconds
+ * @covers \Engelsystem\Helpers\Schedule\Event::getAbstract
+ * @covers \Engelsystem\Helpers\Schedule\Event::getSlug
+ * @covers \Engelsystem\Helpers\Schedule\Event::getTrack
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLogo
+ * @covers \Engelsystem\Helpers\Schedule\Event::getPersons
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLanguage
+ * @covers \Engelsystem\Helpers\Schedule\Event::getDescription
+ * @covers \Engelsystem\Helpers\Schedule\Event::getRecording
+ * @covers \Engelsystem\Helpers\Schedule\Event::getLinks
+ * @covers \Engelsystem\Helpers\Schedule\Event::getAttachments
+ * @covers \Engelsystem\Helpers\Schedule\Event::getUrl
+ * @covers \Engelsystem\Helpers\Schedule\Event::getVideoDownloadUrl
+ */
+ public function testCreateNotDefault()
+ {
+ $persons = [1337 => 'Some Person'];
+ $links = ['https://foo.bar' => 'Foo Bar'];
+ $attachments = ['/files/foo.pdf' => 'Suspicious PDF'];
+ $event = new Event(
+ '3-2-1-0',
+ 2,
+ new Room('Bar'),
+ 'Lorem',
+ 'Ipsum',
+ 'Workshop',
+ new Carbon('2021-01-01T00:00:00+00:00'),
+ '00:00:00',
+ '00:30',
+ 'Lorem ipsum dolor sit amet',
+ '2-lorem',
+ 'DevOps',
+ '/foo/bar.png',
+ $persons,
+ 'de',
+ 'Foo bar is awesome! & That\'s why...',
+ 'CC BY SA',
+ $links,
+ $attachments,
+ 'https://foo.bar/2-lorem',
+ 'https://videos.orem.ipsum/2-lorem.mp4'
+ );
+
+ $this->assertEquals('/foo/bar.png', $event->getLogo());
+ $this->assertEquals($persons, $event->getPersons());
+ $this->assertEquals('de', $event->getLanguage());
+ $this->assertEquals('Foo bar is awesome! & That\'s why...', $event->getDescription());
+ $this->assertEquals('CC BY SA', $event->getRecording());
+ $this->assertEquals($links, $event->getLinks());
+ $this->assertEquals($attachments, $event->getAttachments());
+ $this->assertEquals('https://foo.bar/2-lorem', $event->getUrl());
+ $this->assertEquals('https://videos.orem.ipsum/2-lorem.mp4', $event->getVideoDownloadUrl());
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/RoomTest.php b/tests/Unit/Helpers/Schedule/RoomTest.php
new file mode 100644
index 00000000..8b9b600a
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/RoomTest.php
@@ -0,0 +1,31 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Engelsystem\Helpers\Schedule\Event;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Test\Unit\TestCase;
+
+class RoomTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Room::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Room::getName
+ * @covers \Engelsystem\Helpers\Schedule\Room::getEvent
+ * @covers \Engelsystem\Helpers\Schedule\Room::setEvent
+ */
+ public function testCreate()
+ {
+ $room = new Room('Test');
+ $this->assertEquals('Test', $room->getName());
+ $this->assertEquals([], $room->getEvent());
+
+ $events = [$this->createMock(Event::class), $this->createMock(Event::class)];
+ $events2 = [$this->createMock(Event::class)];
+ $room = new Room('Test2', $events);
+ $this->assertEquals($events, $room->getEvent());
+
+ $room->setEvent($events2);
+ $this->assertEquals($events2, $room->getEvent());
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/ScheduleTest.php b/tests/Unit/Helpers/Schedule/ScheduleTest.php
new file mode 100644
index 00000000..6a3634cf
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/ScheduleTest.php
@@ -0,0 +1,112 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Carbon\Carbon;
+use Engelsystem\Helpers\Schedule\Conference;
+use Engelsystem\Helpers\Schedule\Day;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Helpers\Schedule\Schedule;
+use Engelsystem\Test\Unit\HasDatabase;
+use Engelsystem\Test\Unit\TestCase;
+
+class ScheduleTest extends TestCase
+{
+ use HasDatabase;
+
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::__construct
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getVersion
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getConference
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getDay
+ */
+ public function testCreate()
+ {
+ $conference = new Conference('Foo Bar', 'FooB');
+ $days = [$this->createMock(Day::class)];
+ $schedule = new Schedule('Foo\'ing stuff 1.0', $conference, $days);
+
+ $this->assertEquals('Foo\'ing stuff 1.0', $schedule->getVersion());
+ $this->assertEquals($conference, $schedule->getConference());
+ $this->assertEquals($days, $schedule->getDay());
+ }
+
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getRooms
+ */
+ public function testGetRooms()
+ {
+ $conference = new Conference('Test', 'T');
+ $room1 = new Room('Test 1');
+ $room2 = new Room('Test 2');
+ $room3 = new Room('Test 3');
+ $days = [
+ new Day(
+ '2042-01-01',
+ new Carbon('2042-01-01T00:00:00+00:00'),
+ new Carbon('2042-01-01T23:59:00+00:00'),
+ 1,
+ [$room1, $room2]
+ ),
+ new Day(
+ '2042-01-02',
+ new Carbon('2042-02-01T00:00:00+00:00'),
+ new Carbon('2042-02-01T23:59:00+00:00'),
+ 2,
+ [new Room('Test 2'), $room3]
+ ),
+ ];
+ $schedule = new Schedule('Lorem 1.3.3.7', $conference, $days);
+
+ $this->assertEquals(['Test 1' => $room1, 'Test 2' => $room2, 'Test 3' => $room3], $schedule->getRooms());
+
+ $schedule = new Schedule('Lorem 1.3.3.0', $conference, []);
+ $this->assertEquals([], $schedule->getRooms());
+ }
+
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getStartDateTime
+ * @covers \Engelsystem\Helpers\Schedule\Schedule::getEndDateTime
+ */
+ public function testGetDateTimes()
+ {
+ $conference = new Conference('Some Conference', 'SC');
+ $days = [
+ new Day(
+ '2042-01-02',
+ new Carbon('2042-01-02T00:00:00+00:00'),
+ new Carbon('2042-01-02T23:59:00+00:00'),
+ 2
+ ),
+ new Day(
+ '2042-01-01',
+ new Carbon('2042-01-01T00:00:00+00:00'),
+ new Carbon('2042-01-01T23:59:00+00:00'),
+ 1
+ ),
+ new Day(
+ '2042-01-04',
+ new Carbon('2042-01-04T00:00:00+00:00'),
+ new Carbon('2042-01-04T23:59:00+00:00'),
+ 3
+ ),
+ ];
+ $schedule = new Schedule('Ipsum tester', $conference, $days);
+
+ $this->assertEquals('2042-01-01T00:00:00+00:00', $schedule->getStartDateTime()->format(Carbon::RFC3339));
+ $this->assertEquals('2042-01-04T23:59:00+00:00', $schedule->getEndDateTime()->format(Carbon::RFC3339));
+
+ $schedule = new Schedule('Ipsum old', $conference, []);
+ $this->assertNull($schedule->getStartDateTime());
+ $this->assertNull($schedule->getEndDateTime());
+ }
+
+ /**
+ * Prepare test
+ */
+ protected function setUp(): void
+ {
+ parent::setUp();
+ $this->initDatabase();
+ }
+}
diff --git a/tests/Unit/Helpers/Schedule/XmlParserTest.php b/tests/Unit/Helpers/Schedule/XmlParserTest.php
new file mode 100644
index 00000000..023e9c7d
--- /dev/null
+++ b/tests/Unit/Helpers/Schedule/XmlParserTest.php
@@ -0,0 +1,54 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers\Schedule;
+
+use Engelsystem\Helpers\Schedule\Day;
+use Engelsystem\Helpers\Schedule\Event;
+use Engelsystem\Helpers\Schedule\Room;
+use Engelsystem\Helpers\Schedule\XmlParser;
+use Engelsystem\Test\Unit\TestCase;
+use Illuminate\Support\Arr;
+
+class XmlParserTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::load
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::parseXml
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::parseEvents
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::getFirstXpathContent
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::getListFromSequence
+ * @covers \Engelsystem\Helpers\Schedule\XmlParser::getSchedule
+ */
+ public function testLoad()
+ {
+ libxml_use_internal_errors(true);
+
+ $parser = new XmlParser();
+ $this->assertFalse($parser->load('foo'));
+ $this->assertTrue($parser->load(file_get_contents(__DIR__ . '/Assets/schedule.xml')));
+
+ $schedule = $parser->getSchedule();
+ $this->assertEquals('Some version string', $schedule->getVersion());
+ $this->assertEquals('Test Event', $schedule->getConference()->getTitle());
+
+ /** @var Room $room */
+ $room = Arr::first($schedule->getRooms());
+ $this->assertEquals('Rooming', $room->getName());
+
+ /** @var Day $day */
+ $day = Arr::first($schedule->getDay());
+ $this->assertEquals('2042-01-01', $day->getDate());
+ $this->assertEquals(1, $day->getIndex());
+
+ /** @var Room $room */
+ $room = Arr::first($day->getRoom());
+ /** @var Event $event */
+ $event = Arr::first($room->getEvent());
+
+ $this->assertEquals('Foo Bar Test', $event->getTitle());
+ $this->assertEquals('WTFPL', $event->getRecording());
+ $this->assertEquals('de', $event->getLanguage());
+ $this->assertEquals('12:30', $event->getStart());
+ $this->assertEquals([1234 => 'Some Person'], $event->getPersons());
+ }
+}
diff --git a/tests/Unit/Http/GuzzleServiceProviderTest.php b/tests/Unit/Http/GuzzleServiceProviderTest.php
new file mode 100644
index 00000000..4d3c938b
--- /dev/null
+++ b/tests/Unit/Http/GuzzleServiceProviderTest.php
@@ -0,0 +1,29 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Http;
+
+use Engelsystem\Application;
+use Engelsystem\Http\GuzzleServiceProvider;
+use Engelsystem\Test\Unit\ServiceProviderTest;
+use GuzzleHttp\Client as GuzzleClient;
+
+class GuzzleServiceProviderTest extends ServiceProviderTest
+{
+ /**
+ * @covers \Engelsystem\Http\GuzzleServiceProvider::register
+ */
+ public function testRegister()
+ {
+ $app = new Application();
+
+ $serviceProvider = new GuzzleServiceProvider($app);
+ $serviceProvider->register();
+
+ /** @var GuzzleClient $guzzle */
+ $guzzle = $app->make(GuzzleClient::class);
+ $config = $guzzle->getConfig();
+
+ $this->assertFalse($config['http_errors']);
+ $this->assertArrayHasKey('timeout', $config);
+ }
+}
diff --git a/tests/Unit/Models/Shifts/ScheduleShiftTest.php b/tests/Unit/Models/Shifts/ScheduleShiftTest.php
new file mode 100644
index 00000000..b615f90d
--- /dev/null
+++ b/tests/Unit/Models/Shifts/ScheduleShiftTest.php
@@ -0,0 +1,41 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Models\Shifts;
+
+use Engelsystem\Models\Shifts\Schedule;
+use Engelsystem\Models\Shifts\ScheduleShift;
+use Engelsystem\Test\Unit\HasDatabase;
+use Engelsystem\Test\Unit\TestCase;
+use Illuminate\Database\Eloquent\Relations\BelongsTo;
+
+class ScheduleShiftTest extends TestCase
+{
+ use HasDatabase;
+
+ /**
+ * @covers \Engelsystem\Models\Shifts\ScheduleShift::schedule
+ */
+ public function testScheduleShifts()
+ {
+ $schedule = new Schedule(['url' => 'https://lorem.ipsum/schedule.xml']);
+ $schedule->save();
+
+ $scheduleShift = new ScheduleShift(['shift_id' => 1, 'guid' => 'a']);
+ $scheduleShift->schedule()->associate($schedule);
+ $scheduleShift->save();
+
+ /** @var ScheduleShift $scheduleShift */
+ $scheduleShift = (new ScheduleShift())->find(1);
+ $this->assertInstanceOf(BelongsTo::class, $scheduleShift->schedule());
+ $this->assertEquals($schedule->id, $scheduleShift->schedule->id);
+ }
+
+ /**
+ * Prepare test
+ */
+ protected function setUp(): void
+ {
+ parent::setUp();
+ $this->initDatabase();
+ }
+}
diff --git a/tests/Unit/Models/Shifts/ScheduleTest.php b/tests/Unit/Models/Shifts/ScheduleTest.php
new file mode 100644
index 00000000..34988afd
--- /dev/null
+++ b/tests/Unit/Models/Shifts/ScheduleTest.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Models\Shifts;
+
+use Engelsystem\Models\Shifts\Schedule;
+use Engelsystem\Models\Shifts\ScheduleShift;
+use Engelsystem\Test\Unit\HasDatabase;
+use Engelsystem\Test\Unit\TestCase;
+
+class ScheduleTest extends TestCase
+{
+ use HasDatabase;
+
+ /**
+ * @covers \Engelsystem\Models\Shifts\Schedule::scheduleShifts
+ */
+ public function testScheduleShifts()
+ {
+ $schedule = new Schedule(['url' => 'https://foo.bar/schedule.xml']);
+ $schedule->save();
+
+ (new ScheduleShift(['shift_id' => 1, 'schedule_id' => $schedule->id, 'guid' => 'a']))->save();
+ (new ScheduleShift(['shift_id' => 2, 'schedule_id' => $schedule->id, 'guid' => 'b']))->save();
+ (new ScheduleShift(['shift_id' => 3, 'schedule_id' => $schedule->id, 'guid' => 'c']))->save();
+
+ $this->assertCount(3, $schedule->scheduleShifts);
+ }
+
+ /**
+ * Prepare test
+ */
+ protected function setUp(): void
+ {
+ parent::setUp();
+ $this->initDatabase();
+ }
+}