'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Sodom

Sodom may refer to:

Places

  • Sodom and Gomorrah, cities mentioned in the Book of Genesis
  • Bab edh-Dhra and Numeira, the possible sites of the historic cities
  • Sodom, Kentucky
  • Sodom, Ohio
  • Sodom, West Virginia
  • Sodom, Ontario, Canada
  • Mount Sodom or Mount Sedom, Israel
  • Mount Sudum (Sodom) and valley near Lund Khwar, Pakistan
  • Winschoten or Sodom, Netherlands
  • Sodom, Shetland, Scotland, UK
  • Sodom, Denbighshire, Wales, UK
  • Sodom, Wiltshire, a community near Dauntsey, Wiltshire, UK
  • Adamant, Vermont or Sodom, United States
  • Revere, North Carolina or Sodom, United States
  • Sodom, a community within North Canaan, Connecticut, United States
  • Entertainment

  • Sodom (band), a thrash metal band
  • Sodom (album), an album by Sodom
  • Sodom, or the Quintessence of Debauchery, a drama
  • Sodom, a character in Final Fight and Street Fighter series
  • See also

  • Saddam (disambiguation)
  • Sodomy
  • Sodom (band)

    Sodom is a German thrash metal band from Gelsenkirchen, formed in 1981. Along with Kreator, Destruction and Tankard, Sodom is considered one of the "The Big Teutonic Four" of Teutonic thrash metal. While three of those bands (except Tankard) created a sound that would influence death metal and black metal, Sodom's early music style would greatly influence many late-1980s and early-1990s black metal bands more than others.

    To date, Sodom has released fourteen studio albums, three live albums, two compilation albums and six EPs. They achieved their first commercial success with their third studio album Agent Orange (1989), which was the first thrash metal album to enter the German album charts, where it reached number 36. Sodom remains one of the best-selling thrash metal acts of all time, having sold over one million records.

    History

    Formation and early black metal years (1981–1986)

    Sodom (album)

    Sodom is the eleventh album by German thrash metal band Sodom, released on April 21, 2006. The first pressing was in a slipcase and includes a full-colour poster of the artwork. "The album is self-titled," Tom Angelripper explains, "because every band needs a self-titled album."

    Track listing

    All lyrics written by Tom Angelripper, all music composed by Sodom.

    Personnel

  • Tom Angelripper - vocals, bass guitar
  • Bernd "Bernemann" Kost - guitars
  • Bobby Schottkowski - drums
  • Podcasts:

    Sodom

    ALBUMS

    SODOM

    ALBUMS

    Sodom

    ALBUMS

    • Sodom - Friendly Fire (Official Video)

      "Friendly Fire" by Sodom is taken from the album "Genesis XIX" Get exclusive Sodom merch, vinyl, cds and more here: https://store.spv.de/collections/sodom Video produced by Moritz "Mumpi" Künster for http://monsterpics.de/ #sodom #thrashmetal #metal

      published: 20 Nov 2020
    • Agent Orange

      Provided to YouTube by SPV Agent Orange · Sodom Agent Orange ℗ 2010 BMG Rights Management GmbH Released on: 2010-02-26 Performer: Sodom Composer: Sodom Auto-generated by YouTube.

      published: 31 Jul 2021
    • In War and Pieces

      Provided to YouTube by SPV In War and Pieces · Sodom In War and Pieces ℗ 2010 BMG Rights Management GmbH Released on: 2010-11-19 Performer: Sodom Composer: Sodom Auto-generated by YouTube.

      published: 31 Jul 2021
    • God's Destruction of Sodom and Gomorrah

      Watch the full documentary at: https://youtu.be/V6L1i2S6aH8 Christian Documentary | God's Destruction of Sodom and Gomorrah (Highlights) Brimming with wickedness and adultery, the two great cities of Sodom and Gomorrah provoked the disposition of God. God rained brimstone and fire from the heavens, razing the cities and the people within them to ashes, and causing them to vanish amid His wrath…. Watch Christian movie clip God's Destruction of Sodom and Gomorrah to find out more about God's wrathful, inviolable disposition and His warning to future generations. Please note: All videos on this channel are available to view free of charge. Uploading, modifying, distorting, or excerpting any videos from The Church of Almighty God's YouTube channel by any individual or group without prior a...

      published: 01 Sep 2018
    • Sodom – Bullet In The Head (2024 Redux) (Official Video)

      #Sodom #tappingthevein #thrashmetal Pre-order Tapping The Vein reissues here https://sodomband.lnk.to/TTVyv Follow Sodom: Facebook: https://www.facebook.com/sodomized //www.sodomized.info/ X: https://x.com/sodomized Website: https://www.sodomized.info/ Spotify: https://sodomband.lnk.to/spotifyID YouTube: https://www.youtube.com/@SodomOfficial Apple Music: https://music.apple.com/us/ artist/sodom/76165710 Bullet In The Head appears on Sodom's fifth album Tapping The Vein. Originally released on Steamhammer Records in 1992 it was produced by Harris Johns. The lineup on the album was Tom Angelripper, Andy Brings and Chris Witchhunter. LYRICS Exploitation of young consumer groups Inspired to say yes Debasement by your mad persuasion Destroyed while you progress Bullet in th...

      published: 05 Sep 2024
    • Sodom M - 16

      Buena banda de THRASH METAL!! se las recomiendo escuchar! =)

      published: 15 Apr 2008
    • Sodom – Body Parts (2024 Redux) (Official Video)

      #Sodom #tappingthevein #thrashmetal Buy or stream Tapping The Vein expanded editions https://sodomband.lnk.to/TTVyv Follow Sodom: Facebook: https://www.facebook.com/sodomized X : https://x.com/sodomized Instagram: https://www.instagram.com/sodom_band_official Website: https://www.sodomized.info/ Spotify: https://sodomband.lnk.to/spotifyID YouTube: https://www.youtube.com/@SodomOfficial Apple Music: https://music.apple.com/us/artist/sodom/76165710 Bullet In The Head appears on Sodom’s fifth album Tapping The Vein. Originally released on Steamhammer Records in 1992 it was produced by Harris Johns. The lineup on this album was Tom Angelripper, Andy Brings and Chris Witchhunter. LYRICS Business of false doctrine Nothing is impossible Wonders of technology We got plastic surgery O...

      published: 15 Nov 2024
    • SODOM - CITY OF GOD

      SODOM - "City Of God" from the album: "Sodom" For exclusive merch, limited vinyl and more, check: https://store.spv.de/collections/sodom (C) Steamhammer / SPV #sodom #thrashmetal #metal

      published: 02 Jan 2008
    • Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)

      "Viewer (and listener) discretion is advised." - Christian Here's another fun chapter for the kids! Crazy stuff. Spotify: https://open.spotify.com/show/270BPXWGVsBxZUgfHadOYC?si=851644c52de84ca9 Apple Podcasts: https://podcasts.apple.com/us/podcast/pizza-podcast-with-christian-and-johnny/id1797220954 YouTube: https://www.youtube.com/@PizzaPodcast.ChristianJohnny TikTok: https://www.tiktok.com/@pizza.podcast

      published: 04 Apr 2025
    • Sodom - Napalm In The Morning

      Taken from Sodom's album, "M-16" Thrash metal Lyrics: DECEASE IS JUST AN IRONY OF FATE MULTIPLE RITES I'M GONNA LOSE MY WAY PARAPHILLIAC BODY CONTROL TO SLAY THE PHANTOM FROM MY SOUL ...YOU'RE GONNA DIE ! UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING SKIN PEELING OFF TO DROP YOUR TIMID MASK YOU WISH THAT DEATH REDEEMS YOU FAST CREATION OF THE FIRE SEEMS THE PERFECT NUDE YOUR CARBONIZED TORSO JUST A PART OF YOU ...YOU'RE GONNA DIE ! UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING CHARLIE CLOSE TO ME SMELL OF GASOLINE PHYSICALLY ABUSED SEE THE HOLLOW FACE THAT BURNED DOWN AND RAPED YOUR PETITION REFUSED SCREAMING FOR YOUR LIFE SU...

      published: 25 Aug 2009
    Sodom - Friendly Fire (Official Video)
    4:27

    Sodom - Friendly Fire (Official Video)

    • Order:
    • Duration: 4:27
    • Uploaded Date: 20 Nov 2020
    • views: 1020773
    "Friendly Fire" by Sodom is taken from the album "Genesis XIX" Get exclusive Sodom merch, vinyl, cds and more here: https://store.spv.de/collections/sodom Video produced by Moritz "Mumpi" Künster for http://monsterpics.de/ #sodom #thrashmetal #metal
    https://wn.com/Sodom_Friendly_Fire_(Official_Video)
    Agent Orange
    6:06

    Agent Orange

    • Order:
    • Duration: 6:06
    • Uploaded Date: 31 Jul 2021
    • views: 3383875
    Provided to YouTube by SPV Agent Orange · Sodom Agent Orange ℗ 2010 BMG Rights Management GmbH Released on: 2010-02-26 Performer: Sodom Composer: Sodom Auto-generated by YouTube.
    https://wn.com/Agent_Orange
    In War and Pieces
    4:12

    In War and Pieces

    • Order:
    • Duration: 4:12
    • Uploaded Date: 31 Jul 2021
    • views: 417150
    Provided to YouTube by SPV In War and Pieces · Sodom In War and Pieces ℗ 2010 BMG Rights Management GmbH Released on: 2010-11-19 Performer: Sodom Composer: Sodom Auto-generated by YouTube.
    https://wn.com/In_War_And_Pieces
    God's Destruction of Sodom and Gomorrah
    2:30

    God's Destruction of Sodom and Gomorrah

    • Order:
    • Duration: 2:30
    • Uploaded Date: 01 Sep 2018
    • views: 1735284
    Watch the full documentary at: https://youtu.be/V6L1i2S6aH8 Christian Documentary | God's Destruction of Sodom and Gomorrah (Highlights) Brimming with wickedness and adultery, the two great cities of Sodom and Gomorrah provoked the disposition of God. God rained brimstone and fire from the heavens, razing the cities and the people within them to ashes, and causing them to vanish amid His wrath…. Watch Christian movie clip God's Destruction of Sodom and Gomorrah to find out more about God's wrathful, inviolable disposition and His warning to future generations. Please note: All videos on this channel are available to view free of charge. Uploading, modifying, distorting, or excerpting any videos from The Church of Almighty God's YouTube channel by any individual or group without prior authorization is expressly prohibited. The Church of Almighty God reserves the right to pursue any and all legal remedies in the case of any violation of these terms. Please contact us in advance with requests for public dissemination. Credits: https://www.holyspiritspeaks.org/special-topic/copyright.html
    https://wn.com/God's_Destruction_Of_Sodom_And_Gomorrah
    Sodom – Bullet In The Head (2024 Redux) (Official Video)
    3:17

    Sodom – Bullet In The Head (2024 Redux) (Official Video)

    • Order:
    • Duration: 3:17
    • Uploaded Date: 05 Sep 2024
    • views: 100717
    #Sodom #tappingthevein #thrashmetal Pre-order Tapping The Vein reissues here https://sodomband.lnk.to/TTVyv Follow Sodom: Facebook: https://www.facebook.com/sodomized //www.sodomized.info/ X: https://x.com/sodomized Website: https://www.sodomized.info/ Spotify: https://sodomband.lnk.to/spotifyID YouTube: https://www.youtube.com/@SodomOfficial Apple Music: https://music.apple.com/us/ artist/sodom/76165710 Bullet In The Head appears on Sodom's fifth album Tapping The Vein. Originally released on Steamhammer Records in 1992 it was produced by Harris Johns. The lineup on the album was Tom Angelripper, Andy Brings and Chris Witchhunter. LYRICS Exploitation of young consumer groups Inspired to say yes Debasement by your mad persuasion Destroyed while you progress Bullet in the head Kick the bucket, are you prepared? There is a bullet in your head To stop the way you earn your bread Cold blooded and mendacious, selling of illusions Ferocious without remorse You give them a trip like there is no tomorrow Don't care what 'H' will cause Bullet in the head Kick the bucket, are you prepared? There is a bullet in your head To stop the way you earn your bread Suffer the children, coming to me Enjoy the habit, the first is free The best you can get between Heaven and Earth Nothing ventured, nothing gained Bullet in the head Kick the bucket, are you prepared? There is a bullet in your head To stop the way you earn your bread Bullet in the head Kick the bucket, are you prepared? There is a bullet in your head to stop the way you earn your bread
    https://wn.com/Sodom_–_Bullet_In_The_Head_(2024_Redux)_(Official_Video)
    Sodom M - 16
    4:50

    Sodom M - 16

    • Order:
    • Duration: 4:50
    • Uploaded Date: 15 Apr 2008
    • views: 3262938
    Buena banda de THRASH METAL!! se las recomiendo escuchar! =)
    https://wn.com/Sodom_M_16
    Sodom – Body Parts (2024 Redux) (Official Video)
    3:18

    Sodom – Body Parts (2024 Redux) (Official Video)

    • Order:
    • Duration: 3:18
    • Uploaded Date: 15 Nov 2024
    • views: 53797
    #Sodom #tappingthevein #thrashmetal Buy or stream Tapping The Vein expanded editions https://sodomband.lnk.to/TTVyv Follow Sodom: Facebook: https://www.facebook.com/sodomized X : https://x.com/sodomized Instagram: https://www.instagram.com/sodom_band_official Website: https://www.sodomized.info/ Spotify: https://sodomband.lnk.to/spotifyID YouTube: https://www.youtube.com/@SodomOfficial Apple Music: https://music.apple.com/us/artist/sodom/76165710 Bullet In The Head appears on Sodom’s fifth album Tapping The Vein. Originally released on Steamhammer Records in 1992 it was produced by Harris Johns. The lineup on this album was Tom Angelripper, Andy Brings and Chris Witchhunter. LYRICS Business of false doctrine Nothing is impossible Wonders of technology We got plastic surgery Organ trading is of use Unavoidable the abuse Need some lungs and need some hearts Searching for new body parts Body parts Bodies damaged after a crash Transplanting skin to your flesh That's no minor injury This is plastic surgery Rich and infamous bastard You got a chance to survive Replacing your diseased parts Recover and stay alive Body parts Life is what you wanna buy Unknown victims have to die New organs is what you need Nothing justified the deed Business of false doctrine Everything is possible Wonders of technology Because we got plastic surgery
    https://wn.com/Sodom_–_Body_Parts_(2024_Redux)_(Official_Video)
    SODOM - CITY OF GOD
    4:37

    SODOM - CITY OF GOD

    • Order:
    • Duration: 4:37
    • Uploaded Date: 02 Jan 2008
    • views: 3397939
    SODOM - "City Of God" from the album: "Sodom" For exclusive merch, limited vinyl and more, check: https://store.spv.de/collections/sodom (C) Steamhammer / SPV #sodom #thrashmetal #metal
    https://wn.com/Sodom_City_Of_God
    Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)
    1:08:07

    Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)

    • Order:
    • Duration: 1:08:07
    • Uploaded Date: 04 Apr 2025
    • views: 13
    "Viewer (and listener) discretion is advised." - Christian Here's another fun chapter for the kids! Crazy stuff. Spotify: https://open.spotify.com/show/270BPXWGVsBxZUgfHadOYC?si=851644c52de84ca9 Apple Podcasts: https://podcasts.apple.com/us/podcast/pizza-podcast-with-christian-and-johnny/id1797220954 YouTube: https://www.youtube.com/@PizzaPodcast.ChristianJohnny TikTok: https://www.tiktok.com/@pizza.podcast
    https://wn.com/Abraham_Part_Two_Lot_Sodom_Gomorrah_(Hawaiian)
    Sodom - Napalm In The Morning
    6:03

    Sodom - Napalm In The Morning

    • Order:
    • Duration: 6:03
    • Uploaded Date: 25 Aug 2009
    • views: 2542536
    Taken from Sodom's album, "M-16" Thrash metal Lyrics: DECEASE IS JUST AN IRONY OF FATE MULTIPLE RITES I'M GONNA LOSE MY WAY PARAPHILLIAC BODY CONTROL TO SLAY THE PHANTOM FROM MY SOUL ...YOU'RE GONNA DIE ! UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING SKIN PEELING OFF TO DROP YOUR TIMID MASK YOU WISH THAT DEATH REDEEMS YOU FAST CREATION OF THE FIRE SEEMS THE PERFECT NUDE YOUR CARBONIZED TORSO JUST A PART OF YOU ...YOU'RE GONNA DIE ! UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING CHARLIE CLOSE TO ME SMELL OF GASOLINE PHYSICALLY ABUSED SEE THE HOLLOW FACE THAT BURNED DOWN AND RAPED YOUR PETITION REFUSED SCREAMING FOR YOUR LIFE SUFFOCATION CRIES RELIGIONS BEEN LOST DANCING IN THE FLAMES THAT'S YOUR DESTINY SURRENDERED TO THE GODS UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING ...YOU'RE GONNA DIE ! UNHOLY EVIL PROPHETS RISE FIRE IS RAINING FROM THE ENDLESS SKIES CAN YOU HEAR THE FINAL THUNDER ROARING NAPALM IN THE MORNING TIME BOMB WARRIOR FLANKED ALL AROUND FIGHTING BACK THEIR LIES YOU ARE MY SOUL INSANE BLOOD STOPS FEEDING VEINS GOD DAMN MONKEY'S BITE ASHES DUNG THE GROUND INFURIATE MAULED RECRUDESCENCE OF WOUNDS THERE'S NO TIME TO WASTE SMASH'EM WITHOUT GRACE HELL IS COMING TO YOU
    https://wn.com/Sodom_Napalm_In_The_Morning
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Sodom - Friendly Fire (Official Video)
      4:27
      Sodom - Friendly Fire (Official Video)remove from playlist
    • Agent Orange
      6:06
      Agent Orangeremove from playlist
    • In War and Pieces
      4:12
      In War and Piecesremove from playlist
    • God's Destruction of Sodom and Gomorrah
      2:30
      God's Destruction of Sodom and Gomorrahremove from playlist
    • Sodom – Bullet In The Head (2024 Redux) (Official Video)
      3:17
      Sodom – Bullet In The Head (2024 Redux) (Official Video)remove from playlist
    • Sodom M - 16
      4:50
      Sodom M - 16remove from playlist
    • Sodom – Body Parts (2024 Redux) (Official Video)
      3:18
      Sodom – Body Parts (2024 Redux) (Official Video)remove from playlist
    • SODOM - CITY OF GOD
      4:37
      SODOM - CITY OF GODremove from playlist
    • Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)
      1:08:07
      Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)remove from playlist
    • Sodom - Napalm In The Morning
      6:03
      Sodom - Napalm In The Morningremove from playlist
    PLAYLIST TIME: 0:00 / 1:47:27

    Sodom - Friendly Fire (Official Video)

    "Friendly Fire" by Sodom is taken from the album "Genesis XIX" Get exclusive Sodom merch, vinyl, cds and more here: https://store.spv.de/collections/sodom Video produced by Moritz "Mumpi" Künster for http://monsterpics.de/ #sodom #thrashmetal #metal
    4:27
    Sodom - Friendly Fire (Official Video)
    "Friendly Fire" by Sodom is taken from the album "Genesis XIX" Get exclusive Sodom merch, ...
    published: 20 Nov 2020
    Play in Full Screen
    6:06
    Agent Orange
    Provided to YouTube by SPV Agent Orange · Sodom Agent Orange ℗ 2010 BMG Rights Manageme...
    published: 31 Jul 2021
    Play in Full Screen
    4:12
    In War and Pieces
    Provided to YouTube by SPV In War and Pieces · Sodom In War and Pieces ℗ 2010 BMG Right...
    published: 31 Jul 2021
    Play in Full Screen
    2:30
    God's Destruction of Sodom and Gomorrah
    Watch the full documentary at: https://youtu.be/V6L1i2S6aH8 Christian Documentary | God'...
    published: 01 Sep 2018
    Play in Full Screen
    3:17
    Sodom – Bullet In The Head (2024 Redux) (Official Video)
    #Sodom #tappingthevein #thrashmetal Pre-order Tapping The Vein reissues here https://s...
    published: 05 Sep 2024
    Play in Full Screen
    4:50
    Sodom M - 16
    Buena banda de THRASH METAL!! se las recomiendo escuchar! =)
    published: 15 Apr 2008
    Play in Full Screen
    3:18
    Sodom – Body Parts (2024 Redux) (Official Video)
    #Sodom #tappingthevein #thrashmetal Buy or stream Tapping The Vein expanded editions http...
    published: 15 Nov 2024
    Play in Full Screen
    4:37
    SODOM - CITY OF GOD
    SODOM - "City Of God" from the album: "Sodom" For exclusive merch, limited vinyl and more,...
    published: 02 Jan 2008
    Play in Full Screen
    1:08:07
    Abraham Part Two - Lot / Sodom & Gomorrah (Hawaiian)
    "Viewer (and listener) discretion is advised." - Christian Here's another fun chapter for ...
    published: 04 Apr 2025
    Play in Full Screen
    6:03
    Sodom - Napalm In The Morning
    Taken from Sodom's album, "M-16" Thrash metal Lyrics: DECEASE IS JUST AN IRONY OF FATE MU...
    published: 25 Aug 2009
    Play in Full Screen

    Sodom

    Sodom may refer to:

    Places

  • Sodom and Gomorrah, cities mentioned in the Book of Genesis
  • Bab edh-Dhra and Numeira, the possible sites of the historic cities
  • Sodom, Kentucky
  • Sodom, Ohio
  • Sodom, West Virginia
  • Sodom, Ontario, Canada
  • Mount Sodom or Mount Sedom, Israel
  • Mount Sudum (Sodom) and valley near Lund Khwar, Pakistan
  • Winschoten or Sodom, Netherlands
  • Sodom, Shetland, Scotland, UK
  • Sodom, Denbighshire, Wales, UK
  • Sodom, Wiltshire, a community near Dauntsey, Wiltshire, UK
  • Adamant, Vermont or Sodom, United States
  • Revere, North Carolina or Sodom, United States
  • Sodom, a community within North Canaan, Connecticut, United States
  • Entertainment

  • Sodom (band), a thrash metal band
  • Sodom (album), an album by Sodom
  • Sodom, or the Quintessence of Debauchery, a drama
  • Sodom, a character in Final Fight and Street Fighter series
  • See also

  • Saddam (disambiguation)
  • Sodomy
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: sodom

    Edit

    Sulfur Balls of Sodom and Gomorrah

    Bitchute 01 May 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    Sasha Latypova Victor Hugo Epstein Files Ashkenazi Immune To Covid Vax Sodom Gomorrah USA Education

    Bitchute 29 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    VISIONS BY BARNETT/WASHINGTON/GRUVER/DUDUMAM/WILKERSON & USA THE SISTER OF SODOM & UNWALLED CITIES

    Bitchute 29 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    This Was Life in SODOM and GOMORRAH! The Dirtiest City in History

    Bitchute 27 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    THE HISTORY OF SODOM & ITS JUDGMENT

    Bitchute 27 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    Archeological Evidence of the Bible's Judgment On Sodom and Gomorrah

    Bitchute 25 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    Waynesboro man gets 25 years for sodomizing child

    The Daily Progress Charlottesville 16 Apr 2025
    David Lee White, 41, pleaded guilty and was sentenced to 25 years in Waynesboro court to sodomizing a child under 13 ... .
    • 1
    ×