mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-12 15:02:45 +00:00
remove wardriving, as it's mostly obsolete
This commit is contained in:
@@ -45,7 +45,6 @@ const items = [
|
||||
const contributeItems = [
|
||||
{ title: 'Submit Cameras', icon: 'mdi-map-marker-plus', to: '/report/id' },
|
||||
{ title: 'Public Records', icon: 'mdi-file-document', to: '/foia' },
|
||||
{ title: 'Wardriving', icon: 'mdi-car-connected', to: '/wardriving' },
|
||||
]
|
||||
|
||||
const metaItems = [
|
||||
|
||||
@@ -89,14 +89,6 @@ const router = createRouter({
|
||||
title: 'Operators | DeFlock'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/wardriving',
|
||||
name: 'wardriving',
|
||||
component: () => import('../views/Wardriving.vue'),
|
||||
meta: {
|
||||
title: 'Wardriving | DeFlock'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/contact',
|
||||
name: 'contact',
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<v-container class="info-section" max-width="1000">
|
||||
<h2 id="community-datasets">Community Datasets</h2>
|
||||
<p>
|
||||
Here are some datasets that have been shared with us by the community through various collection methods (FOIA requests, scraping, wardriving, etc.). If you have a dataset you'd like to share, please reach out to us <router-link to="/contact">here</router-link>.
|
||||
Here are some datasets that have been shared with us by the community through various collection methods (FOIA requests, scraping, etc.). If you have a dataset you'd like to share, please reach out to us <router-link to="/contact">here</router-link>.
|
||||
</p>
|
||||
<p class="mb-4">
|
||||
If you'd like to report some of the ALPRs in these data sets so that they can be seen on the map, download the file and follow <router-link to="/report">these instructions</router-link>. Be sure to check that the cameras you're reporting are not already on the map. Please note that these datasets contain only approximate locations of cameras. You will need to verify the locations yourself.
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
<template>
|
||||
<Hero
|
||||
title="Wardriving"
|
||||
description="Learn how driving around with an Android phone can help map ALPRs!"
|
||||
imageUrl="/wardriving.jpg"
|
||||
/>
|
||||
<v-container class="mb-16">
|
||||
<h2>What is Wardriving?</h2>
|
||||
<p>
|
||||
Wardriving is the practice of collecting data on wireless networks, Bluetooth devices, and other signals while traveling (typically in a car). For DeFlock, this technique can be a valuable way to locate Flock ALPRs and contribute to the map.
|
||||
</p>
|
||||
|
||||
<h2>How is Wardriving Useful?</h2>
|
||||
<p>
|
||||
Flock ALPRs often use battery packs called <b>Penguin Packs</b> that emit recognizable Bluetooth signals. Although Flock updates their firmware regularly to make detection more difficult, these devices still follow patterns that can be identified through wardriving techniques.
|
||||
</p>
|
||||
<p>
|
||||
This data can be used to identify new locations of ALPRs and verify the accuracy of existing locations. Members of the community regularly review WiGLE data to identify new ALPRs and update the map accordingly.
|
||||
</p>
|
||||
|
||||
<h2>How to Get Started</h2>
|
||||
<p>
|
||||
Download the <a href="https://play.google.com/store/apps/details?id=net.wigle.wigleandroid" target="_blank">WiGLE WiFi Wardriving</a> app on your Android phone. This app will allow you to record the Bluetooth signals emitted by Flock devices.
|
||||
</p>
|
||||
<p>
|
||||
By running the app while doing your daily commute or driving around town, you can help identify new ALPRs and contribute to the map.
|
||||
</p>
|
||||
|
||||
<h2>How to Add WiGLE Data to the Map</h2>
|
||||
<v-alert
|
||||
type="info"
|
||||
variant="tonal"
|
||||
icon="mdi-information"
|
||||
class="mb-4"
|
||||
title="WiGLE Map Layer Coming Soon"
|
||||
text="We're working on adding an overlay to the map that will show likely ALPR locations based on wardriving data. This will help identify unmapped areas and verify existing locations. Until then, you can download some of our datasets and contribute to the map manually."
|
||||
/>
|
||||
<p>
|
||||
Even if you haven't collected WiGLE data yourself, you can still contribute to the map by downloading the data from the <router-link to="/operators">our community datasets</router-link> or by performing a <a href="https://wigle.net/search#btSearch" target="_blank">WiGLE search</a> yourself. Once you have the data, you can import the CSV to a map such as <a href="https://www.google.com/mymaps" target="_blank">Google My Maps</a>. From there, you can verify the ALPR's location, direction, and other details. Once you're confident in the data, you can submit it to OpenStreetMap for inclusion in the map.
|
||||
</p>
|
||||
|
||||
<h2>Research Attribution</h2>
|
||||
<p>
|
||||
Much of our wardriving methodology is based on research by <a href="https://www.ryanohoro.com/post/spotting-flock-safety-s-falcon-cameras" target="_blank">Ryan Ohoro</a>, who has documented techniques for identifying Flock Safety's Falcon cameras. We recommend checking out his work for more detailed information.
|
||||
</p>
|
||||
|
||||
<div class="text-center mt-12">
|
||||
<v-btn to="/operators" color="rgb(18, 151, 195)"><v-icon start>mdi-table</v-icon>View Datasets</v-btn>
|
||||
</div>
|
||||
|
||||
</v-container>
|
||||
|
||||
<Footer />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import Hero from '@/components/layout/Hero.vue';
|
||||
import Footer from '@/components/layout/Footer.vue';
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import url('@/assets/typography.css');
|
||||
</style>
|
||||
Reference in New Issue
Block a user