Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Detect and block a binary file

kalap92 September 21, 2017

Is it possible to write a script in Adaptavist ScriptRunner which detects any binary file and denies commit which includes the file?

3 answers

1 accepted

Suggest an answer

Log in or Sign up to answer
2 votes
Answer accepted
adammarkham
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 22, 2017

Hi Piotr,

You can do this with ScriptRunner for Bitbucket Server. You need to use the pre-receive hook "protect git references" . You can enable this by going to Admin -> Pre-receive hooks -> Protect git references. The documentation for that is here.

You'll need to use a condition like the following on that hook to exclude the binary file extensions: 

pathsMatch('regex:.*\\.jar$|.*\\.exe$')

The example above shows you how to do it for jar and exe files.

You can also use the "restrict file size" hook here to block files based on file size, which you may find useful to combine with the rule above.

Alternatively you can use the following as a custom pre-receive hook, but it may not catch every case. You should try it and see if it works for you:

import com.atlassian.bitbucket.commit.CommitService
import com.atlassian.bitbucket.content.AbstractDiffContentCallback
import com.atlassian.bitbucket.content.DiffRequest
import com.atlassian.bitbucket.content.Path
import com.atlassian.bitbucket.hook.HookResponse
import com.atlassian.bitbucket.repository.RefChange
import com.atlassian.bitbucket.repository.RefChangeType
import com.atlassian.bitbucket.repository.Repository
import com.atlassian.sal.api.component.ComponentLocator
import com.onresolve.scriptrunner.canned.bitbucket.util.BitbucketCannedScriptUtils

import javax.annotation.Nullable

def commitService = ComponentLocator.getComponent(CommitService)

def repository = repository as Repository
def refChanges = refChanges as Collection<RefChange>
def hookResponse = hookResponse as HookResponse

def msg = new StringBuilder()

refChanges.each { refChange ->
if (refChange.type != RefChangeType.DELETE) {

def commits = refChange.getCommits(repository)
if (!commits) {
// empty branch
return
}
def diffRequestBuilder = new DiffRequest.Builder(repository, refChange.toHash)

commits.first().parents.each {
diffRequestBuilder.sinceId(it.id)
}

commitService.streamDiff(diffRequestBuilder.build(), new AbstractDiffContentCallback() {
@Override
void onBinary(@Nullable Path src, @Nullable Path dst) throws IOException {
msg << "Binary file $dst not allowed - on branch: ${refChange.ref.id}"
super.onBinary(src, dst)
}
})
}
}

if (msg) {
hookResponse.out().write BitbucketCannedScriptUtils.wrapHookResponse(msg)
return false
}

return true

Hope this helps.

Adam

kalap92 September 22, 2017

Hi Adam,

Thank you for your answer.

I guess relying on file extensions is the only way here - it is not possible to read a file somehow using ScriptRunner for BitBucket Server and detect any binary file, right?

 

Thanks,

Piotr

adammarkham
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 22, 2017

Hi Piotr, 

You can do this but you need to perform a diff. I've updated my answer above. There are some cases which it may miss, but this is what Atlassian uses internally in Bitbucket to detect binary files.

Thanks,
Adam

kalap92 September 22, 2017

 

Thank you !

0 votes
kalap92 September 22, 2017

Hi Adam,

Thank you for your answer.

I guess relying on file extensions is the only way here - it is not possible to read a file somehow using ScriptRunner for BitBucket Server and detect any binary file, right?

 

Thanks,

Piotr

Cloud_NEW July 19, 2021

Recently we encountered one problem that commit size are too large , is it possible to block large commit size ? How could we monitor that if commit size over 1GB that will force user to push to server side?

0 votes
Bhushan Nagaraj
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 21, 2017

Hi Piotr,

ScriptRunner for Bitbucket provides a Pre-receive hook to restrict files by file size. Refer to https://scriptrunner.adaptavist.com/4.3.0/bitbucket/PreReceiveHooks.html

You can write a custom script if you would like to check for file types.

Cheers

Bhushan

TAGS
AUG Leaders

Atlassian Community Events